table not showing in explorer

table not showing in explorer

am 26.12.2002 03:31:48 von Bruce Young

i have a php script that searches a column and prints it out.
the table appears fine in mozilla, but dont show in Explorer.
if i change the variable in the search script to a literal value, it
works fine. i have tried alternatives, and it seems that the problem
is in the variable. here is the script:
any help appreciated.



Code Search



$dbconnect = pg_connect("dbname=campus user=apache");
?>



bgcolor="green">

bgcolor="#f6f6f5">


">



Search:





//$code_query = $code;
if($submit) {

//THIS IS THE PROBLEM I THINK
$qry_get_camp_codes = "select id, id, name from list where name
~* '$code'";
$result = pg_exec ($dbconnect, $qry_get_camp_codes);
if (!$result) {printf ("Error\n"); exit;}
if (!pg_numrows($result)) { echo "no
result
"; exit;}
printf ("

");
printf ("
");
printf (" bgcolor=\"lightblue\">
");
while($myrow = pg_fetch_row($result)) {

printf (""
, $myrow[0], $myrow[1], $myrow[2]);
}
printf ("
IDCollege
href=\"javascript:setCampCode('%s')\">%s%s

");
}
pg_close($dbconnect);
?>



__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

Re: table not showing in explorer

am 26.12.2002 03:59:30 von Andrew McMillan

On Thu, 2002-12-26 at 15:31, Bruce Young wrote:
> i have a php script that searches a column and prints it out.
> the table appears fine in mozilla, but dont show in Explorer.
> if i change the variable in the search script to a literal value, it
> works fine. i have tried alternatives, and it seems that the problem
> is in the variable. here is the script:
> any help appreciated.

If it works in Mozilla but not in IE, your problem will most likely be
in the form or the javascript.

I recommend you use the phpinfo() function to display all of the PHP
variables (and other information) in the page and go from there. When
you do that it will probably become obvious exactly what difference
there is between the two browsers.

The problem will have nothing to do with PostgreSQL, of course.

Cheers,
Andrew.
>
>
>
> Code Search
>
>
>
> > $dbconnect = pg_connect("dbname=campus user=apache");
> ?>
>

>


> > bgcolor="green">

> > bgcolor="#f6f6f5">

>
> ">
>
>
>
>
Search:

>

>


> > //$code_query = $code;
> if($submit) {
>
> //THIS IS THE PROBLEM I THINK
> $qry_get_camp_codes = "select id, id, name from list where name
> ~* '$code'";
> $result = pg_exec ($dbconnect, $qry_get_camp_codes);
> if (!$result) {printf ("Error\n"); exit;}
> if (!pg_numrows($result)) { echo "no
> result
"; exit;}
> printf ("

> ");
> printf ("
> ");
> printf (" > bgcolor=\"lightblue\">
> ");
> while($myrow = pg_fetch_row($result)) {
>
> printf (""
> , $myrow[0], $myrow[1], $myrow[2]);
> }
> printf ("
IDCollege
> href=\"javascript:setCampCode('%s')\">%s%s

> ");
> }
> pg_close($dbconnect);
> ?>
>
>

--
------------------------------------------------------------ ---------
Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
DDI: +64(4)916-7201 MOB: +64(21)635-694 OFFICE: +64(4)499-2267
Survey for nothing with http://survey.net.nz/
------------------------------------------------------------ ---------


---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Re: table not showing in explorer

am 26.12.2002 06:02:55 von Bruce Young

Still wont work. did a few tests and it seems like Explorer wont print the
table when i use a form variable. the script will notify if there are no
results, but nothing if any. - no table
oh, and what info in phpinfo() would i need to look at if its the prob.?
thanks

=====================================

Code Search




bgcolor="lightblue">
">


Search:





$dbconnect = pg_connect("dbname=campus user=apache");
//$code_query = $code;
$code = strtolower($code);
if($submit) {
if($code=="") {print "You need to enter a query!"; exit;}

//WORKS in Explorer
$qry_get_camp_codes = "select id,name from campuslist where name ilike
lower('%HOUSTon%')";
//DONT WORK in Explorer
//$qry_get_camp_codes = "select id,name from campuslist where name ilike
lower('%$code%')";
$result = pg_query ($dbconnect, $qry_get_camp_codes);
if (!$result) {printf ("Error\n"); exit;}
if (!pg_numrows($result)) { echo "no
result
"; exit;}
print "
";
print "";
print "";
while($myrow = pg_fetch_row($result)) {
printf (""
, $myrow[0], $myrow[1]);
}
printf ("
IDNAME
%s%s

");
}
pg_close($dbconnect);
?>



__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Re: table not showing in explorer

am 26.12.2002 10:50:34 von Andrew McMillan

On Thu, 2002-12-26 at 18:02, Bruce Young wrote:
> Still wont work. did a few tests and it seems like Explorer wont print the
> table when i use a form variable. the script will notify if there are no
> results, but nothing if any. - no table
> oh, and what info in phpinfo() would i need to look at if its the prob.?

>From your code, it looks like the table won't be printed if $submit is
not set (although your code is perhaps weak on checking the value of
that variable).

I have seen cases where IE will set the value of a submit button
variable differently if you hit within the form, than if you
click on the button with your mouse.

Remember, your comments accusation of "does/doesn't work in IE" is not
actually true - all of this code runs on the _server_ - not the client.
All that IE or Mozilla does is provide values for variables input to the
script: the script runs on the same server in both cases.

In any case in the phpinfo() I would look for differences in the value
of the "submit" variable. Obviously differences in the value of the
"code" variable would have an effect as well, but are possibly less
likely.

You may want to lose the javascript too, to simplify debugging. That
stuff _does_ run on the client, so may behave differently on Mozilla and
IE. Personally I avoid DHTML like the plague (because it is so prone to
browser-specific problems) and so I don't know what your fragment is
supposed to achieve.

Cheers,
Andrew.

> thanks
>
> =====================================
>
> Code Search
>
>
>


>
> > bgcolor="lightblue">
> ">
>
>
>
Search:

>

>


> > $dbconnect = pg_connect("dbname=campus user=apache");
> //$code_query = $code;
> $code = strtolower($code);
> if($submit) {

You could change that to:
if ( "$code" != "" ) {


> if($code=="") {print "You need to enter a query!"; exit;}
>
> //WORKS in Explorer
> $qry_get_camp_codes = "select id,name from campuslist where name ilike
> lower('%HOUSTon%')";
> //DONT WORK in Explorer
> //$qry_get_camp_codes = "select id,name from campuslist where name ilike
> lower('%$code%')";
> $result = pg_query ($dbconnect, $qry_get_camp_codes);
> if (!$result) {printf ("Error\n"); exit;}
> if (!pg_numrows($result)) { echo "no
> result
"; exit;}
> print "
";
> print "";
> print "";
> while($myrow = pg_fetch_row($result)) {
> printf (""
> , $myrow[0], $myrow[1]);
> }
> printf ("
IDNAME
%s%s

> ");
> }
> pg_close($dbconnect);
> ?>
>
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
--
------------------------------------------------------------ ---------
Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
DDI: +64(4)916-7201 MOB: +64(21)635-694 OFFICE: +64(4)499-2267
Survey for nothing with http://survey.net.nz/
------------------------------------------------------------ ---------


---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/users-lounge/docs/faq.html

Re: table not showing in explorer - Solved

am 26.12.2002 16:45:03 von Bruce Young

you are right! it seems IE set the value of the submit button variable
differently if you hit than if you click on the button. (i tried
clicking and it works fine)
i modified the script as you suggested from if($submit) {
to if( "$code" != "" ) { and everything works fine now.
thanks again

- bruce


--- Andrew McMillan wrote:
> On Thu, 2002-12-26 at 18:02, Bruce Young wrote:
> > Still wont work. did a few tests and it seems like Explorer wont print the
> > table when i use a form variable. the script will notify if there are no
> > results, but nothing if any. - no table
> > oh, and what info in phpinfo() would i need to look at if its the prob.?
>
> >From your code, it looks like the table won't be printed if $submit is
> not set (although your code is perhaps weak on checking the value of
> that variable).
>
> I have seen cases where IE will set the value of a submit button
> variable differently if you hit within the form, than if you
> click on the button with your mouse.
>
> Remember, your comments accusation of "does/doesn't work in IE" is not
> actually true - all of this code runs on the _server_ - not the client.
> All that IE or Mozilla does is provide values for variables input to the
> script: the script runs on the same server in both cases.
>
> In any case in the phpinfo() I would look for differences in the value
> of the "submit" variable. Obviously differences in the value of the
> "code" variable would have an effect as well, but are possibly less
> likely.
>
> You may want to lose the javascript too, to simplify debugging. That
> stuff _does_ run on the client, so may behave differently on Mozilla and
> IE. Personally I avoid DHTML like the plague (because it is so prone to
> browser-specific problems) and so I don't know what your fragment is
> supposed to achieve.
>
> Cheers,
> Andrew.
>
> > thanks
> >
> > =====================================
> >
> > Code Search
> >
> >
> >


> >
> > > > bgcolor="lightblue">
> > ">
> >
> >
> >
Search:

> >

> >


> > > > $dbconnect = pg_connect("dbname=campus user=apache");
> > //$code_query = $code;
> > $code = strtolower($code);
> > if($submit) {
>
> You could change that to:
> if ( "$code" != "" ) {
>
>
> > if($code=="") {print "You need to enter a query!"; exit;}
> >
> > //WORKS in Explorer
> > $qry_get_camp_codes = "select id,name from campuslist where name ilike
> > lower('%HOUSTon%')";
> > //DONT WORK in Explorer
> > //$qry_get_camp_codes = "select id,name from campuslist where name
> ilike
> > lower('%$code%')";
> > $result = pg_query ($dbconnect, $qry_get_camp_codes);
> > if (!$result) {printf ("Error\n"); exit;}
> > if (!pg_numrows($result)) { echo "no
> > result
"; exit;}
> > print "
";
> > print "";
> > print "";
> > while($myrow = pg_fetch_row($result)) {
> > printf (""
> > , $myrow[0], $myrow[1]);
> > }
> > printf ("
IDNAME
%s%s

> > ");
> > }
> > pg_close($dbconnect);
> > ?>
> >
> >
> >
> > __________________________________________________
> > Do you Yahoo!?
> > Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> > http://mailplus.yahoo.com
> >
> > ---------------------------(end of broadcast)---------------------------
> > TIP 4: Don't 'kill -9' the postmaster
> --
> ------------------------------------------------------------ ---------
> Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
> WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
> DDI: +64(4)916-7201 MOB: +64(21)635-694 OFFICE: +64(4)499-2267
> Survey for nothing with http://survey.net.nz/
> ------------------------------------------------------------ ---------
>


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)