Jump to content

Stielle

Members
  • Posts

    11
  • Joined

  • Last visited

Stielle's Achievements

Member

Member (2/5)

0

Reputation

  1. You need to output your Category before you run the output loop for the individual rows themselves. This way it only prints once.
  2. If it is always returning 'Success', then check the return value of the comparison. That function is always returning something (-1, 0, 1, etc). In your if statement, you are checking to see if anything was returned. This will always pass. If you stayed with that function, you would need to check to see if it is 0: if(strcmp($Password, $datas["Password"])==0) But heed mac_guyver's advice as it was all very good.
  3. This is acceptable if I have coded an application that a user is working in and wants to leave an area without saving. But as a 'WAIT DON'T LEAVE!' for a webpage, I make a point to not go back to that site again, report it, etc.
  4. I have a form that uses this specific code. It is placed at the top of my main php file.
  5. I found this snippet of code and it is working for me without issue. <EMBED SRC="file.mov" WIDTH=240 HEIGHT = 180 AUTOPLAY=true CONTROLLER=false LOOP=false HREF="mymovie.mov" TARGET="myself" PLUGINSPAGE=http://www.apple.com/quicktime/">
  6. My bad. I was only answering in pure HTML. I assumed no CSS answer since it was in the HTML forum. But agreed, I wouldn't use either and would prefer the CSS solution.
  7. HTML will automatically add a single space if you provide it. Any more than that it will ignore. If you want to add more than one space, simply add for each space you want. Ex: 3 spaces
  8. If you simply just want extra spaces, do this: echo "<tr><td>$Item </td>"; echo "<td>$Qty</td></tr>";
×
×
  • 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.