473,322 Members | 1,501 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

PHP Sajax help

what wrong with my script?

<?php
require("connect.php");
require("Sajax.php");
function show_mysql() {
// mysql query
$display="SELECT * FROM Movies ORDER BY id";
$mysql_result=mysql_query($display);
while ($row=mysql_fetch_array($mysql_result))
{
$id=$row["id"];
$Name=$row["Name"];
$Link=$row["Link"];
$Description=$row["Description"];
$Image=$row["Image"];
$Type=$row["Type"];
$ang_rate=$row["ang_rate"];
return print"<table align=\"center\">
<tr>
<td><div align=\"center\">
<table width=\"376\" background=\"/images/bg.jpg\" align=\"center\">
<tr>
<td width=\"98\" rowspan=\"0\"><img src=\"$Image\" width=\"65\"
height=\"65\"><br><span class=\"style3\">$Name</span></td>
<td height=\"91\" colspan=\"3\"><span
class=\"style1\">$Description</span></td></tr>
<tr>
<td width=\"130\"><div align=\"left\"><a
href=\"play_movie.php?row_id=$id\"><span class=\"style1\">Play
Game</span></a></div><div align=\"left\"><a
href=\"comment.php?row_id=$id\"><span class=\"style1\">Add
Comment</span></a></div></td>
<td width=\"264\"><form action=\"rating.php\" method=\"GET\">
<input type=\"hidden\" value=\"$id\" name=\"id\">
<select
name=\"rating\">
<option

selected>Rate Movie</option>

<option
value=\"1\">1</option>
<option

value=\"2\">2</option>
<option

value=\"3\">3</option>
<option

value=\"4\">4</option>
<option

value=\"5\">5</option>
<option

value=\"6\">6</option>
<option

value=\"7\">7</option>
<option

value=\"8\">8</option>
<option

value=\"9\">9</option>
<option

value=\"10\">10</option>
</select>

<input type=\"submit\"
value=\"Go\">
</form></td>
<td width=\"0\" height=\"28\"><div align=\"center\"><span
class=\"style1\">Rating: $ang_rate</span></div></td></tr>
</table></div></div></td></tr></table>";

}
}
//starting SAJAX stuff
$sajax_request_type = "POST";
sajax_init();
sajax_export("show_mysql");
sajax_handle_client_request();
?>
<html>
<head>
<title>MySiteSucks Movies</title>
<script>
<?
sajax_show_javascript();
?>
function show_me(date_server) {
document.getElementById("date_div").innerHTML =
date_server;
}

function mysql_display() {
//put the return of php's show_now func
//to the javascript show_me func as a parameter
x_show_mysql(show_me);
}
</script>
</head>
<body onLoad="mysql_display();">
<table id="date_div">Loading....</table>
</body>
</html>

Apr 26 '06 #1
7 4896
$display="SELECT * FROM Movies ORDER BY id;";

Apr 26 '06 #2
The ; in the mysql_query isn't needed but in your while loop you have:

return print"<table...

so only the first id will be printed.

Robin
Apr 26 '06 #3
the thing is nothing is printed at all.

Robin wrote:
The ; in the mysql_query isn't needed but in your while loop you have:

return print"<table...

so only the first id will be printed.

Robin


Apr 26 '06 #4
Clovis818 wrote:
the thing is nothing is printed at all.

Robin wrote:
The ; in the mysql_query isn't needed but in your while loop you have:

return print"<table...

so only the first id will be printed.

Robin



But what's your document source look like?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Apr 27 '06 #5
the source looks like this

<html>
<head>
<title>MySiteSucks Movies</title>
<script>

// remote scripting library
// (c) copyright 2005 modernmethod, inc
var sajax_debug_mode = false;
var sajax_request_type = "POST";
var sajax_target_id = "";
var sajax_failure_redirect = "";

function sajax_debug(text) {
if (sajax_debug_mode)
alert(text);
}

function sajax_init_object() {
sajax_debug("sajax_init_object() called..")

var A;

var msxmlhttp = new Array(
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP');
for (var i = 0; i < msxmlhttp.length; i++) {
try {
A = new ActiveXObject(msxmlhttp[i]);
} catch (e) {
A = null;
}
}

if(!A && typeof XMLHttpRequest != "undefined")
A = new XMLHttpRequest();
if (!A)
sajax_debug("Could not create connection object.");
return A;
}

var sajax_requests = new Array();

function sajax_cancel() {
for (var i = 0; i < sajax_requests.length; i++)
sajax_requests[i].abort();
}

function sajax_do_call(func_name, args) {
var i, x, n;
var uri;
var post_data;
var target_id;

sajax_debug("in sajax_do_call().." + sajax_request_type + "/" +
sajax_target_id);
target_id = sajax_target_id;
if (typeof(sajax_request_type) == "undefined" || sajax_request_type
== "")
sajax_request_type = "GET";

uri = "/Movies/ajax_index.php";
if (sajax_request_type == "GET") {

if (uri.indexOf("?") == -1)
uri += "?rs=" + escape(func_name);
else
uri += "&rs=" + escape(func_name);
uri += "&rst=" + escape(sajax_target_id);
uri += "&rsrnd=" + new Date().getTime();

for (i = 0; i < args.length-1; i++)
uri += "&rsargs[]=" + escape(args[i]);

post_data = null;
}
else if (sajax_request_type == "POST") {
post_data = "rs=" + escape(func_name);
post_data += "&rst=" + escape(sajax_target_id);
post_data += "&rsrnd=" + new Date().getTime();

for (i = 0; i < args.length-1; i++)
post_data = post_data + "&rsargs[]=" + escape(args[i]);
}
else {
alert("Illegal request type: " + sajax_request_type);
}

x = sajax_init_object();
if (x == null) {
if (sajax_failure_redirect != "") {
location.href = sajax_failure_redirect;
return false;
} else {
sajax_debug("NULL sajax object for user agent:\n" +
navigator.userAgent);
return false;
}
} else {
x.open(sajax_request_type, uri, true);
// window.open(uri);

sajax_requests[sajax_requests.length] = x;

if (sajax_request_type == "POST") {
x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
x.setRequestHeader("Content-Type",
"application/x-www-form-urlencoded");
}

x.onreadystatechange = function() {
if (x.readyState != 4)
return;

sajax_debug("received " + x.responseText);

var status;
var data;
var txt = x.responseText.replace(/^\s*|\s*$/g,"");
status = txt.charAt(0);
data = txt.substring(2);

if (status == "") {
// let's just assume this is a pre-response bailout and let it
slide for now
} else if (status == "-")
alert("Error: " + data);
else {
if (target_id != "")
document.getElementById(target_id).innerHTML = eval(data);
else {
try {
var callback;
var extra_data = false;
if (typeof args[args.length-1] == "object") {
callback = args[args.length-1].callback;
extra_data = args[args.length-1].extra_data;
} else {
callback = args[args.length-1];
}
callback(eval(data), extra_data);
} catch (e) {
sajax_debug("Caught error " + e + ": Could not eval " + data );
}
}
}
}
}

sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
x.send(post_data);
sajax_debug(func_name + " waiting..");
delete x;
return true;
}
// wrapper for show_mysql
function x_show_mysql() {
sajax_do_call("show_mysql",
x_show_mysql.arguments);
}

function show_me(date_server) {
document.getElementById("date_div").innerHTML =
date_server;
}

function mysql_display() {

//put the return of php's show_now func
//to the javascript show_me func as a parameter
x_show_mysql(show_me);
}
</script>
</head>

<body onLoad="mysql_display();">
<table id="date_div">Loading....</table>
</body>
</html>

Jerry Stuckle wrote:
Clovis818 wrote:
the thing is nothing is printed at all.

Robin wrote:
The ; in the mysql_query isn't needed but in your while loop you have:

return print"<table...

so only the first id will be printed.

Robin



But what's your document source look like?

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================


Apr 27 '06 #6
fu*************@gmail.com wrote:
the source looks like this

<stuff snipped>

Well, a table with no rows or cells is invalid - you need at least <tr><td> and
</td></tr> around the "Loading...".

Other than that - you have nothing in the body, and won't if your javascript
fails. Unfortunately, its not something I can test here as I don't have your
functions.

First thing I think you need to do is verify your Javascript is working and
calling the PHP properly.

And, of course, you do realize your page will be 100% unusable by anyone who has
javascript disabled.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Apr 27 '06 #7
Jerry Stuckle wrote:
First thing I think you need to do is verify your Javascript is working
and calling the PHP properly.


Use firefox and its javascript console and dom inspector to check the
javascript. Turning on sajax_debug_mode might also help.

Also creating a dummy page with a form that calls sajax will se what PHP
is returning, e.g. (untested)

<html>
<body>
<form name='test' action='/Movies/ajax_index.php' method='post'>
<input type='text' name='rs' value='show_mysql' />
<input type='submit' value='Go' />
</form>
</body>
</html>

Robin
Apr 27 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
6
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing...
3
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
7
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available...
5
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time...
0
by: Clovis818 | last post by:
Well i have a problem i want to be able to run my messenger and music player or every page on my site just right now not much of the site is using Ajax or sajax, is there a way to load a php...
0
by: funkychicken818 | last post by:
From: FunkyChciekn818 - view profile Date: Tues, Apr 25 2006 6:49 pm Email: "FunkyChciekn818" <funkychicken...@gmail.com> show options Reply | Reply to Author | Forward | Print | View...
0
by: The Godfather | last post by:
Hi, i write an entire site using sajax and php and I found it very powerful and useful. But yesterday my client had formatted the ubuntu server and when server is come back online a strange thing...
5
banning
by: banning | last post by:
please feel free to delete this... i am an idiot... here is my code that works in case anyone was curious as to what i was trying to accomplish... <? require("Sajax.php"); function...
1
by: littlecoder | last post by:
Hello , I get an error like this : 'object expected' . Can anyone please help ? The code from the example is is as shown : I used Sajax library <? require("Sajax.php"); function...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.