jyhm
Ultra Geek
OK, am i loosing my mind?
If I remember correctly you can send variable data to a script via a url as such;
But it is not working and I don't know why!
This is my simple script to test why my GET and POST function is not working. Here is the link, does it show the value for the variable $jaded in your browser? You can play with the ?jaded=
http://www.jyhm.net/jade.php?jaded=wut+the+bleep!
If I remember correctly you can send variable data to a script via a url as such;
Code:
http://www.url.com/myscript.php?variable=value
This is my simple script to test why my GET and POST function is not working. Here is the link, does it show the value for the variable $jaded in your browser? You can play with the ?jaded=
http://www.jyhm.net/jade.php?jaded=wut+the+bleep!
Code:
<html>
<head>
<title>Pass Variables</title>
</head>
<?php
echo 'This is your variable here <br><br><font color="blue">';
echo $jaded;
echo '</font>';
?>
<body>
</body>
</html>