Jump to content

cbeshears

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

cbeshears's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have a database of names and address that I want to use to create mailing labels; however, I am having a problem. I may have an entry for Bob Smith at 123 Main Street, City, ST 12345. And I may have an entry for his wife, Sue Smith, at 123 Main Street, City, ST 12345. In my query, (when the conditions are met), I would like for the label to display the following: Bob and Sue Smtih 123 Main Street City, ST 12345 How do I do this? I tried to google it, but the information I'm finding does not address my problems. Thanks for your help in advance.
  2. Okay, I got it, I got it! What I did is move the hyperlink further down the page. Then I created a separate line that incremented the variable, so that if the NEXT link was not selected then the new value wouldn't effect the script. Here's the code: [code] $port_id++; echo "<a href='imageonly.php?portid=".$port_id."'>NEXT</a>"; [/code] Thanks for your help.
  3. Thanks for clearning up the quotes, but now I'm getting this error and I'm not sure what it means: Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/cbesh2/public_html/customseating/code-only/imageonly.php on line 96 I've done a search for this error but don't understand. Any suggestions?
  4. Is there a way to perform arithmetic operators in a hyperlink using PHP? I'm trying to create a NEXT link to will increment my variable by +1 but am having problems with the syntax. Can anybody help please? My code is: [code]echo "<a href='imageonly.php?portid='.$port_id+1.'>NEXT</a>";[/code] and [code]$query = "select * from table where portid = ".$_GET['portid']; [/code] Thanks for your help.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.