473,405 Members | 2,379 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,405 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 4907
$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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.