hello,
I need some help with ajax post.
I want to send a txt string to server and to use that string to get the responce.
iw set ajax as this:
tag: "search"
url: from my variable&"search.php"&"?AskMe="
data: TextBox.Text
method: "POST"
and my php fails on this:
<?php
// string to search in a filename.
$searchString = $_POST['AskMe'];
.
(here's more of my php that properly works)
.
?>
what am i doing wrong? ...how to properly POST string from my textbox.text to my $searchString in php?
thanx!!!!