
Originally Posted by
barak1991
dude.. you have read what i've wrote? i already have the shout.php file... but i need the form to send it via my website.
master's link's are dead....
any help?
im not dude that's first
second it is complete answer but seems terms "php/html" are black magic for you
shout.php
Code:
// send_msg("127.0.0.1", "55970", $msg); <- remove //
send_msg("127.0.0.1", "55970", "Insert your text here. It can fit in one message up to here."); <- DELETE or COMMENT OUT
add after <?php tag following line
Code:
$msg = $_GET['msg'];
Then usage = shout.php?msg=MESSAGE
or by form like (wait 1 min lemme write)
ok
(example of form, rest like requirment, style do ur self :]]] )
form lets say shout.html
Code:
<table align="center" style="background-color: #000000; margin-top:150px; border: 1px solid; width:150px;">
<form method="get" action="shout.php">
<tr>
<td><input type="text" id="msg" name="msg" maxlength="35" size="35"></td>
</tr>
<tr>
<td align="center"><input type="submit" value="SEND"></td>
</tr>
</table>
so when u visit http://localhost/shout.html it will send submitted message using shout.php located on the main directory of ur web
HF