Server side coding
Hi guys, this might seem a trivial question but is it ever possible to do something like this...
$test = "hello";
echo "<p>$test will</p>";
$test = "goodbye";
Is it possible that it can ever read out goodbye will? Obviously this wont work, but are there any ways of getting round this server side problem? Perhaps using javascript
Cheers, Will.
|