0
Text based message in php !
Where to start php that write program for text sending and receiving...
1 Respuesta
+ 1
You may use the methods gets what bring php for send and receive parameters for example:
put our parameter text when we send some text:
localhost/test.php?text=this_is_a_text
<?php
// Test.php
echo $_GET["text"];
// this_is_a_text
?>