Search results

  1. W

    How do I get a .swf file to work on my web site?

    I uploaded a .swf file to my web site. When I call this file, it shows up but nothing happens. How do I get it to work? It's a game I have uploaded. If I go to another site with one, all I have to do is go to theirsite.com/game/thegame.swf But if I go to mysite.com/game/thegame.swf it...
  2. W

    How do I get a .swf file to work on my web site?

    I uploaded a .swf file to my web site. When I call this file, it shows up but nothing happens. How do I get it to work? It's a game I have uploaded. If I go to another site with one, all I have to do is go to theirsite.com/game/thegame.swf But if I go to mysite.com/game/thegame.swf it...
  3. W

    How do I take a 10 character string in php and and delete out everything except the alphanumeric characters?

    Say $a = "E2 7>P349&" I want it to return "E27P349" No spaces or any of the other characters.
  4. W

    How do I change a date string in php?

    If I have for example todays date stored in $todayis. Which would be set to 2011-12-16. How would I add 4 days to it? Whenever someone is on the site on Friday, I want them to see the date of next Tuesday. Or is there an easier way to jump to the date of next Tuesday no matter if it is...
  5. W

    What is wrong with this php code?

    echo "diff before ", $diff, "<br>"; if ($diff = 4 AND $num >= 3) { echo "diff after ", $diff, "<br>"; } What is making this string change and why is it running to start with when $diff is equal to 3? When I run this I get: diff before 3 diff after 4
  6. W

    What is wrong with my php/MySQL code on my web site?

    $result= mysql_query("SELECT * FROM users WHERE userName = '$username'"); if (!$result) { die('Invalid Username: ' . mysql_error()); } $row = mysql_fetch_array( '$result' ); $temp = $row('userName'); echo $temp; When I run this I get: Warning: mysql_fetch_array(): supplied...
  7. W

    How do I send values from one page to another after a form has been submitted in html?

    For example, as a logged in user goes from one page to another, how is their user name passed from one page to the next?
  8. W

    When adding a row in a MySQL database using php, how can I make it add in row #8?

    For example, if I have 25 rows in my database, and I create a new row and I want it to be in the 8th row, how do I do this? No, Gordan, it's not. If you read a database, and print out the results, it ALWAYS comes back in the same order you posted them in.
  9. W

    How do I edit a .gif file with Photoshop?

    When I open my .gif with Photoshop, it tells me that I will loose all other frames if I save it. I want to make the image smaller. I just opened it with ImageReady, resized it, and tried to save it. The only format it allows me to save it in is a .psd file.
  10. W

    How do I increase line size in Photoshop?

    I am using the circle tool in Photoshop and it draws a very thin line. How do I get it to increase the thickness? How do I do anything before I deselect? It's version 7.0 It doesn't keep it selected. The stroke option is faded. (not selectable) It automatically makes a 1px line. I can't find...
Back
Top