This is really basic PHP. Can someone tell me why this does not work and what I need to do to make it work.
<?php
$test_var=12;
proc_scrn($test_var);
proc_scrn($local_pid)
{
echo "tp12",$local_pid ;
}
?>
|
Well, you haven't actually created a function there. This would work:
|
|||||
|
|
|||||
|
|
Pretty simple
|
||||
|
|
functionbefore proc_scrn. And I am not sure if the echo-part will work. Try changing it toecho "tp12".$local_pid;– OptimusCrime Nov 2 '11 at 11:59echostatement is fine and is actually faster than concatenation – Phil Nov 2 '11 at 12:02