Search found 41 matches
- Mon Oct 15, 2007 10:47 am
- Forum: Javascript
- Topic: Help with processing records
- Replies: 1
- Views: 507
Help with processing records
Morning everyone, I'm having a real bad case of the Mondays (just can't seem to figure this out!) What Ia ma trying to do is give the user a page to administer an event invite list, this page will only show those that are invited so far. what I want to do is be able to remove records based on the un...
- Wed May 23, 2007 2:20 pm
- Forum: PHP - Code
- Topic: simple updating news page?
- Replies: 4
- Views: 367
- Wed May 23, 2007 12:16 pm
- Forum: PHP - Code
- Topic: [SOLVED] - Select/Unselect all checkboxes
- Replies: 2
- Views: 350
- Wed May 23, 2007 12:03 pm
- Forum: PHP - Code
- Topic: diplay a random number into html page
- Replies: 4
- Views: 508
-how can i pass a variable from php page to another without using forms? Try using PHP sessions... http://www.phptutorial.info/learn/session.php http://www.htmlgoodies.com/beyond/php/article.php/3472581 -how can i call a funtion located to a different php page from the current one? If you have the ...
- Wed May 23, 2007 11:53 am
- Forum: PHP - Code
- Topic: create a login
- Replies: 3
- Views: 373
- Wed May 23, 2007 11:50 am
- Forum: PHP - Code
- Topic: Case sensitivity problems[SOLVED]
- Replies: 10
- Views: 745
If you use the as The Moose suggested it won't matter if it's all caps or mixed case. only the spelling will matter
Code: Select all
$query = "SELECT * FROM members WHERE LOWER(loginid)='" . strtolower($loginid) . "'";- Wed May 23, 2007 11:45 am
- Forum: PHP - Code
- Topic: [SOLVED] - Select/Unselect all checkboxes
- Replies: 2
- Views: 350
[SOLVED] - Select/Unselect all checkboxes
Hi every one, I've searched the site but haven't been able to find an answer to my issue. I'm creating a dynamic table of data with a check box on the leftside. What I want to do is be able to select all or unselect all with a master check box. I can get this to work with javascript if the checkbox ...
- Fri Feb 23, 2007 4:45 pm
- Forum: PHP - Code
- Topic: [Solved] Problem getting values in foreach statement
- Replies: 5
- Views: 883
Resolved with the following Info:
mysql_fetch_array() only returns one result row from the query. The most common idiom for looping through all the results is:
mysql_fetch_array() only returns one result row from the query. The most common idiom for looping through all the results is:
Code: Select all
while($row = mysql_fetch_array($result))
{
// do whatever needs doing for this result row
}- Fri Feb 23, 2007 3:17 pm
- Forum: PHP - Code
- Topic: [Solved] Problem getting values in foreach statement
- Replies: 5
- Views: 883
- Fri Feb 23, 2007 2:47 pm
- Forum: PHP - Code
- Topic: [Solved] Problem getting values in foreach statement
- Replies: 5
- Views: 883
- Fri Feb 23, 2007 12:51 pm
- Forum: PHP - Code
- Topic: [Solved] Problem getting values in foreach statement
- Replies: 5
- Views: 883
[Solved] Problem getting values in foreach statement
Hi there, I'm trying to construct a page that will print labels out depending on the selected criteria Here's the code: <?php include 'config.php'; include 'opendb.php'; date_default_timezone_set("America/Edmonton"); require_once('PDF_Label.php'); $pdf = new PDF_Label('5160', 'mm', 1, 2); ...
- Fri Feb 16, 2007 2:39 pm
- Forum: PHP - Code
- Topic: Setting the default or selected value in a select menu
- Replies: 3
- Views: 793
- Fri Feb 16, 2007 2:27 pm
- Forum: PHP - Code
- Topic: I Don't understand why can't make a SELECT!
- Replies: 2
- Views: 569
Re: I Don't understand why can't make a SELECT!
Where is $cadn being set? from what I can see it's nothing so the query returns nothing...
- Fri Feb 16, 2007 2:06 pm
- Forum: PHP - Code
- Topic: Setting the default or selected value in a select menu
- Replies: 3
- Views: 793
Setting the default or selected value in a select menu
Hi there, I'm having an issue trying to get the correct item selected in a drop down menu. I'm populating the menu from one table and pulling the current value from another... the code is as follows: <?php //Get the Category name based on the CategoryID from user record $query2 = "SELECT * FROM...
- Fri Feb 09, 2007 10:32 am
- Forum: Javascript
- Topic: Using javascript with a link to confirm record deletion
- Replies: 6
- Views: 1493