Jump to content

paradrenaline

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

paradrenaline's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I don't have question about a particular code error. I want to know if there is a way to delete a duplicate entry in a database without losing the ID. I have a database of registered participants for an event. Example: Participant 1 registered and is given ID number 7014. The participant then enters again by mistake and is given another ID of 7015. If I delete this entry then the next person who registers gets 7016. Is there a way to delete the information from entry 7015 but maintain this value so that the next person who enters receives this number??? Hope that makes sense. Thanks for any help you can offer. Dan
  2. I am indeed trying to replace the name in the template. Thanks for the help and the learning about "calling" functions not variables! ShogunWarrior your suggestion worked perfect. I appreciate the help greatly. take care
  3. I am using PHPMailer and I have having a problem getting a variable($name) to display in my HTML version of the message. The variable is embedded within the code for another variable $Body. $Body =' <html> <head> <title></title> </head> <body> <p>Dear $name,</p> ........more code '; My question is this: how do I make a call to a variable within a variable? Do I need to use double quotes instead of single here as shown in this example? // HTML body $body = "Hello <font size=\"4\">" . $row["full_name"] . "</font>, <p>"; Any help would be great, I am just not certain how to call the variable and was unable to find an example. Thanks for your time to help!
  4. thanks! I will give it a shot and report back I appreciate the guidance.
  5. I apologize if this is not the correct place to post, I couldn't find any place related to flash. My problem is this. I have created a flash form handled by PHP. When I send mail I would like for some words of a variable to be displayed in bold or underlined in the e-mail. Example of a variable inside my php file $body = "Dear someone,\n\n"; $body .= "[bOLD]Personal Information\n"; //How can I make only this part of the variable appear bold in the e-mail? $body .= "Some more text after that"; After much research am I correct in thinking that there are no bold or underline tags in PHP. Do I have to incorporate HTML into this in order to get the desired effect? If so could someone provide a quick example of how to include HTML in the PHP file. 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.