Search results

  1. P

    if i buy a palm pixi plus set for verizon, can i set it to my at&t plan?

    im looking for a palm pixi because im tired of the phone i currently have. all i can find are palm pixi pluses set for verizon. is there anyway i can get it to work on my att line if i do end up buying it?
  2. P

    Windows Media Player question?

    Would anybody know how to make Windows Media Player's counter start from 0 until the end instead of counting down like it is now. I have no idea why it's backwards and how it got changed. I looked it up on Google and can't seem to find a solution either. OMG Zimstar! Thanks a lot! Never though...
  3. P

    Is it ok to workout prior to tanning outdoors?

    I was thinking of first working out(weightlifting) and after I eat my postworkout meal(shake and some food) I'd take a shower to get my skin nice and clean. Then I'd apply my Coppertone Sport sunscreen on 20-30mins prior to tanning outdoors. And how often should i do it? Like once a day or every...
  4. P

    Is it ok to workout before I tan outdoors?

    Is it ok to workout(by this i mean weightlifting) prior to tanning outdoors? What I was thinking was that after my workout and drink my post workout shake and meal, I'd go and take a shower after to get my skin ready and then put on my Coppertone Sport sunscreen 20 minutes prior to tanning...
  5. P

    I cannot install Adobe Flash Player on my PC which runs Windows XP Home SP3.

    Please help!? I have tried all solution from Adobe reference and other websites. I get messages that "registering failed."
  6. P

    Cocoa Objective-C iPhone NSString comparison question?

    Can you not just use the NOT unary operator? if (![string1 isEqualToString: string2])
  7. P

    How do you create a chat system between 2 computers using PHP without connecting

    You can't do this without some kind of network, its required for the computers to communicate with each other. If you don't have internet access, then bring along a router and assign the server an ip address and assign the client an ip address. Then you could access the server via its IP...
  8. P

    How do you create a chat system between 2 computers using PHP without connecting

    You can't do this without some kind of network, its required for the computers to communicate with each other. If you don't have internet access, then bring along a router and assign the server an ip address and assign the client an ip address. Then you could access the server via its IP...
  9. P

    what do i do if i want to search even if the other fields are empty (php and mysql)?

    We need to see example code for this. My guess is that you have a bunch of lines like this: $firstname = $_GET['first_name'] or die('No first name'); $lastname = $_GET['last_name'] or die('No last name');
  10. P

    PHP/MySQL Question. Exact match vs broad match script problem.?

    Maybe I'm wrong about mysql, but don't you have to quote strings in where clauses? You say SELECT * FROM USER_RECORDS WHERE LastName = 'Tester' instead of SELECT * FROM USER_RECORDS WHERE LastName = Tester and SELECT * FROM USER_RECORDS WHERE LastName '= Tester' is also incorrect, which...
  11. P

    php:work with sessions,everything is OK,but how to prohibit loading page that is always

    This is probably NOT standard practice. One way you could force this is to set a variable in the page including or requiring the part2.php. Then in part2.php you check to see if the variable is set with isset so globalpage.php has: $allowed = 1; and part2.php has: if(isset($allowed)) {...
  12. P

    php login form...

    Read your compiler error message! Basically it's complaining you have an undefined variable on line 62, which is this line: $res = mysql_query(sql) or die(mysql_error()); There's something wrong with that line, namely you're missing the $ in front of sql. It should be $sql, not sql.
  13. P

    php pattern check code wanted? 10pts for best answer?

    you're looking to start with numbers only, so your regular expression is wrong try ^(\d|[_])*$
Back
Top