Current location: Hot Scripts Forums » Programming Languages » PHP » php fuctinons simple tutorials part 1


php fuctinons simple tutorials part 1

Reply
  #1 (permalink)  
Old 10-18-03, 02:03 AM
Miguel222 Miguel222 is offline
Newbie Coder
 
Join Date: Oct 2003
Location: Hesperia, California
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts
php fuctinons simple tutorials part 1

Hey this would show u how to make functions with php. and how to call the function to show the result

Ok first we create the function

<?php

function myfunctionname()
{

echo " My content here..";
// here you will add all your content, code php html etc.


}

// CLOSE THE FUNCTION

?>

ok now we call it..


<?php

myfunctionname();

?>

This weill call the previous function, u can do how many functions u want and call differently..

Another if you want more info like more options n' variables..

like this..

<?php

$name = Miguel;
$lastname = Sanchez;
$info = "something text here etc..";

// we start the function content

function showprofile($name, $lastname, $info) {

// show the results..

echo " Hello My name is $name , and my last name is $lastname <br><br> <b>Info:</b> $info ";

} // end the function

?>

now lets call it..

<?php
showprofile($name, $lastname, $info);
// this will call the function show profile and show results
?>


see how simple it is..

this tutorial was made by me.. please if u liked post your comments or questions.. thanx

MIguel
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP and MySQL ? rob2132 Hot Scripts Forum Questions, Suggestions and Feedback 4 08-29-08 02:22 AM
looking for a simple forum php code westwood Script Requests 5 10-07-03 02:26 AM


All times are GMT -5. The time now is 07:11 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.