Recent content by speaker box

  1. S

    how to store information into a text file in php?

    i know how to write to a file but every time i navigate away from the page it erases everything in the file.
  2. S

    is this possible in html java or css?

    i wanna play music using the embed tag on my site. i am wanting to know if it is possible to start a song from a curtain point. say i have a 3 minute long song i wanna play it from 2 minutes and 32seconds.
  3. S

    ajax why do you not like me!?

    is there a serever that uses ajax wamp5 and wamp 2.0 don't. i heard about xampp but by virus blocker deletes it on start up.
  4. S

    how do you make a simple download link.(html,php,java)?

    i want to make links to download photos, movies and any other types of files on my website.
  5. S

    how do you do this in php?

    i want to echo every number from 1-5000, is it possible?
  6. S

    how to use php cookies?

    i set the cookies. i enabled my cookies. my code <?php //set cookies setcookie($user, $user); //redirect ?> it is for a game i created it calls the users name to locate his/her stats. i can't log in because the cookies won't store my name. my cookies are called from an external function in the...
  7. S

    Need help wtih ASP .net accessing sql 2005 express! How do I connect to a...

    <% DIM objConn Set objConn = Server.CreateObject("ADODB.Connection") objConn.ConnectionString = "DSN=myCONNECTION.dsn" objConn.Open %>
  8. S

    Can someone help me with this HTML code?

    in submit.php you should have <?php $to = "your [email protected]"; $subject = "mail"; $message = $_post ["email"]; $from = $_post ["email"]; mail($to,$subject,$message,$headers); echo "Mail Sent."; ?> just wrote this in the spur of the moment so it may need to be refined.
  9. S

    Can someone help me with this HTML code?

    in submit.php you should have <?php $to = "your [email protected]"; $subject = "mail"; $message = $_post ["email"]; $from = $_post ["email"]; mail($to,$subject,$message,$headers); echo "Mail Sent."; ?> just wrote this in the spur of the moment so it may need to be refined.
  10. S

    why would someone want to take a PSD and convert it into a HTML/CSS website page?

    why would someone want to take a PSD and convert it into a HTML/CSS website page I have no idea as to why.
  11. S

    Need help wtih ASP .net accessing sql 2005 express! How do I connect to a

    <% DIM objConn Set objConn = Server.CreateObject("ADODB.Connection") objConn.ConnectionString = "DSN=myCONNECTION.dsn" objConn.Open %>
  12. S

    how do I create a simple blog in html?

    how do I create a simple blog in html? nothing fancy just a blog that shows the users comment.
Back
Top