Search results

  1. A

    Google Android Market: Delete Account?

    How can I delete my Android Market Developer account? I have mucked it up and I can't pay the fee on a certain google account, so I've had to make another so I can do it again with no mistakes this time, but I've already got an account with the developer name I wanted, so I can't make a new one...
  2. A

    I've Made A jQuery AJAX Chat, Sometimes Double Posts?

    Obviously, it uses a timestamp to fetch new messages, but sometimes when hte user has posted something, it adds the message to the chat's view twice. When you refresh the page, it's only there once, but it seems to add the new message that the user sent twice sometimes. Any idea why? Oh and...
  3. A

    Sony Ericsson W595 Problem: Phone was fine yesterday, till later on, then a few

    problems appeared...? Yesterday morning, my phone was fine, but then later on in the day, my phone turned itself off a few times, and also some other times the screen would just go blank, wit hthe backlight still on, and when you pressed any buttons, nothing happpened. Then even later on, when I...
  4. A

    Books on Programming: PHP Object-Oriented Programming and JavaScript/AJAX?

    Can anyone recommend some really good and easy to understand books on PHP Object-Oriented Programming and JavaScript/AJAX? Also, would I find them at WHSmith?
  5. A

    PHP OOP: Please give me the code for navigating pages, so the link is like...

    ...domain.com/?=page1? as the title says, using OOP in PHP could you please give me the code for navigating pages, so the link is like domain.com/?=page1 I've searched around and I can't fidn what I want to know. Basically, I'm looking for a new way (in PHP OOP) to navigate through my pages...
  6. A

    how to create this in php. a form with name, when name entered, shud say hi xyz,...

    Put this all in one file, named whatever you want: HTML: <html> <body> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST"> <label>Name:</label><input type="text" name="name" /> </form> </body> </html> PHP: <?php if (isset($_POST['name'])) { echo 'hi xyz'; } else { echo 'hello...
  7. A

    how to create this in php. a form with name, when name entered, shud say hi xyz,...

    Put this all in one file, named whatever you want: HTML: <html> <body> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST"> <label>Name:</label><input type="text" name="name" /> </form> </body> </html> PHP: <?php if (isset($_POST['name'])) { echo 'hi xyz'; } else { echo 'hello...
  8. A

    PHP: Include a file from another folder outside of this one...?

    File where the require function is: website/guestbook/guestbook.php File where the required file is: website/includes/db_connect.php I've tried ../ but that's a no go. Please help! Thanks!
  9. A

    PHP OOP: Please give me an example of the structure of a guestbook using

    class and function? PHP OOP: Please give me an example of the structure of a guestbook using class and function. I don't quite understand OOP yet. So I want somebody to show me how you would lay out the structure of a guestbook using class and functions. Basically something like this: class...
  10. A

    Is it possible to get a job related to I.T. like a technician or something from home?

    Is it possible to get a job related to I.T. like a technician or something from home? Like working from home on websites getting payed for it? Thanks
  11. A

    Is there a way i can let someone access a .html file on my computer using their browser?

    Is there a way i can let someone access a .html file on my computer using their browser? I am building a website and i'd like to show them without signing up for a host or sending the file to them. Is this possible? thanks
Back
Top