Jump to content

Jaehoon

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Jaehoon's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hey guys, I'm new to PHP so I'm unfamiliar if there is a better way to do this... I have a table in mySQL named "ITEMS" which has items for sale (iphone/blackberry) and some stuff.. I'm getting the value by using this method, but I'm thinking is there a better method without using a while loop? $query="SELECT * FROM inventory WHERE id = '$product'"; $result = mysql_query($query,$link); while($row=@mysql_fetch_array($result)) { $name = $row["name"]; $item = $row["id"]; $price = $row["price"]; } Is there a way I can directly set a variable in PHP to the product name without the loop?
  2. Hello, I have a small script and I was wondering if there are any big con's about hard coding the admin username/pw into a variable @ config.php? Are there any major issues with this?
  3. Thanks.. I just found the article @ http://www.plus2net.com/php_tutorial/line-breaks.php I've only been using php for a week, so yeah lol. I am using a mySQL database to store all my data, but I post the form and caught the message with $_GET... Is there a better way to go about this?
  4. No sorry, this is a screenshot of my script... I wanted to represent my blog post as shown on the textarea... Just like the box I'm typing the reply on right now, if i press enter to goto the next line... on the forum it will show up as a break So I guess the main issue is that when I submit my form... my breaks are stripped out, and everything becomes 1 long sentence. I wanted my break to remain so the blog post can be represented with breaks the way it was written into the textarea box I know this problem can be avoided if i type <br> into my textarea to goto the next line, but I wanted to be able to press enter to insert a break automatically
  5. Thanks for your help, the code you posted works, but I seem to be capturing the "ENTER" put in by php into the url wrong... URL: msg=this%0D%0Ais%0D%0Aa%0D%0Atest in the url a ENTER break is represented as %0D%0A , is '=0D=0A=' the proper way to represent the %0D%0A in the replace function?
  6. Getting an error: Parse error: syntax error, unexpected T_VARIABLE in I replaced/added/delete the single single quote after the 0a0d and still cant get the error to go away
  7. Hey guys, I have a form I'm submitting via POST and I have no idea how to replace the enter spaces in my textarea into a <br>. I've been trying all of these: $message = ereg_replace("=0D=0A=", "\r", $message); $message = ereg_replace("=0D=0A=", "<br>", $message); But nothing is working, does anyone know how to accomplish this? Thanks in advance!
×
×
  • 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.