close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Basic Search Form

Thread began 7/20/2014 9:43 pm by Jason | Last modified 8/28/2014 7:46 am by Jason | 7983 views | 101 replies

Jason

Ridiculously complex search Form

Can someone please help me figure out what I did wrong in this code? I'm trying to type a first and last name into the 2 search boxes and then have it output the results that match $ServingQuery. Right now nothing happens though.



<?php require_once('Connections/local_i.php'); ?>
<?php require_once('webassist/mysqli/rsobj.php'); ?>
<?php
$UserFirstName = new WA_MySQLi_RS("UserFirstName",$local_i,0);
$UserFirstName->setQuery("SELECT pcms2_users.UserID, pcms2_users.UserFirstName FROM pcms2_users");
$UserFirstName->execute();
?>
<?php
$UserLastName = new WA_MySQLi_RS("UserLastName",$local_i,0);
$UserLastName->setQuery("SELECT pcms2_users.UserID, pcms2_users.UserLastName FROM pcms2_users");
$UserLastName->execute();
?>
<?php
$ServingQuery = new WA_MySQLi_RS("ServingQuery",$local_i,1);
$ServingQuery->setQuery("SELECT pcms2_users.UserID, pcms2_users.UserFirstName, pcms2_users.UserLastName, kids_program_shifts.kp_team_id, kids_program_shifts.kp_volunteer, cleaning_team_shifts.cleaning_team_id, cleaning_team_shifts.ct_volunteer, serving_team.* FROM pcms2_users INNER JOIN kids_program_shifts ON pcms2_users.UserID = kids_program_shifts.kp_volunteer INNER JOIN cleaning_team_shifts ON pcms2_users.UserID = cleaning_team_shifts.ct_volunteer INNER JOIN serving_team ON cleaning_team_shifts.cleaning_team_id = serving_team.id AND kids_program_shifts.kp_team_id = serving_team.id");
$ServingQuery->execute();
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

<body>
<form method="get">
<input type="search" name="UserFirstName" id="UserFirstName">
<input type="search" name="UserLastName" id="UserLastName">
<input type="submit" name="search" value="search">
<?php
while(!$ServingQuery->atEnd()) {
?>
<?php echo($ServingQuery->getColumnVal("UserFirstName")); ?>
<?php echo($ServingQuery->getColumnVal("UserLastName")); ?>
<?php echo($ServingQuery->getColumnVal("team")); ?>
<?php
$ServingQuery->moveNext();
}
$ServingQuery->moveFirst(); //return RS to first record
?>
</form>
</body>
</html>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...