View Single Post
  #1  
Old 02-26-2007, 09:38 PM
bvondane bvondane is offline
 
Join Date: Jan 2007
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default mysql query from a cmps module

I already posted this on the vbadvanced forums but I know there are a lot of smart people on this forum so I thought I would post it here as well...

I have a cmps template module that calls a plugin that points to a php page.....and the php file contains a search form that returns the results from a mysql database...

Here's the php file code:
Code:
<p>If you would like to add information or have found incorrect information...please <a href="http://www.wheelsup.org/sendmessage.php">suggest an update for this database</a>... </p>
<form action="?" method="GET">
<table border="0" id="table1" cellspacing="0" cellpadding="0" width="0">
	<tr>
		<td colspan="2">
<strong>Search for Manufacturer Name or Aircraft</strong> (<em>search in development and may not work</em>) <br />
		*Tip - searching for "vans" will not return "van's", but searching for 
	  "van" will... </td>
	</tr>
	<tr>
	  <td>
<input type="hidden" name="page" value="acmfg">
<input name="searchphrase" type="text" size="40" value="<?=$searchphrase?>"> 
<input type="submit" value="Search">
<a href="http://www.wheelsup.org/windex.php?page=acmfg">Reset and Show All</a></td>
	</tr>
</table>
</form>
<hr size="1">
<hr size="1">
</br>

<?
include("dbinfo.inc.php");
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$searchphrase=$HTTP_GET_VARS['searchphrase'] ;
$query="SELECT * FROM mfg where name like '%$searchphrase%' or aircraft like '%$searchphrase%' ORDER BY name ASC";
$result=mysql_query($query);
$num=mysql_numrows($result); 
mysql_close();
?>

<?
$i=0;
while ($i < $num) {
$name=mysql_result($result,$i,"name");
$url=mysql_result($result,$i,"url");
$phone=mysql_result($result,$i,"phone");
$aircraft=mysql_result($result,$i,"aircraft");
$forum=mysql_result($result,$i,"forum");
?>

<b><? echo "$name"; ?></b><br />
<? echo "URL: <a href=http://www.$url target=_blank> http://www.$url</a>"; ?><br />
<? echo "Phone: $phone"; ?><br />
<? echo "Aircraft: $aircraft"; ?><br />
<? echo "Forum: <a href=$forum> $forum</a>"; ?></a><br />
<hr size="1">

<?
++$i;
} 
?>
If you just open the page in your browser from its location everything works fine:
http://www.wheelsup.org/modules/acmfg.php

However, if you open the cmps page that includes the module that calls the file the search does not work:
http://www.wheelsup.org/windex.php?page=acmfg

When I perform the search the URL looks correct but it returns everything as if the query string is being stripped somehow...

Any help would be greatly appreciated!
-Bill
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01192 seconds
  • Memory Usage 1,770KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete