Search results

  1. J

    How can I call a Javascript event on a HTML div border corners?

    It sounds confusing, but is quite simple. I have a square div, and using css I have four circles replacing the corners of the of the divs border. I want the user to be able to click on one of the corner circles changing the curser image and calling the Javascript onclick event. How do I did that?
  2. J

    What would a cool PHP give away be?

    I have a blog called Web Programming 101. I want to have a freebie to get people to sign up via email. Some of my ideas were... -A free PHP guide a basic tutorial -A bunch of php scripts, I could get the php scripts from hot scripts. Yet, I don't know if I can do that. My idea was to download...
  3. J

    What's wrong with this PHP/MYSQL Insert Into?

    I get this error... You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VALUES(J,B,[email protected],JoeB,TYBYTE,Contact mobile,USA,con' at line 2 This is the code... $Create_User = mysql_query("INSERT INTO...
  4. J

    I'm confused with parsing html with PHP preg_match_all()?

    For example here is some code..... preg_match_all("/<a(?:[^>]*)href=\"([^\"]*)\"(?:[^>]*)>(?:[^<]*)<\/a>/is", $stripped_file, $matches); What I don't get is all of those special characters? (?:[^>]*) How can I do this with the h1 tag, h2 tag, and h3 tag?
  5. J

    Is there a way that I can get real time stock quotes using php? A free open database?

    I want to build a program that can predict how stocks will do. First it needs to be smart. How can I make a php program get stock prices and information?
  6. J

    Is there a way that I can get real time stock quotes using php? A free open database?

    I want to build a program that can predict how stocks will do. First it needs to be smart. How can I make a php program get stock prices and information?
  7. J

    I enjoy programming with php html and css, but I want sell/create a product and add

    it to Clickbank? What product could I create? Is it possible to create an online application and sell it on Clickbank. For example I'd create something like a place where you can go and talk to all of your friends. How could I do this and is it possible to do this with Clickbank?
  8. J

    What's wrong with this php/mysql?

    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Alltel") { $To = "$_POST['num']@message.alltel.com"; ' at line 2Error adding form to mysql database! ** I put \ before the double quotes which is what is used...
  9. J

    How can I create something similar to Awebers form creator using php?

    Can you give me the code or send it to me in an email.
  10. J

    How can I build an html form creator with php? Can you give an idea of how

    to do this (outline)? I want the user to be able to build a form how? Can you give me the php outline along with the pages I should create?
  11. J

    PHP's fwrite() help?

    I have a script that manages lots of files. At the top of a .html page I want php to add something without removing the rest of the file? How can I do that?
  12. J

    Php project help? Javascript or php?

    I'm trying to build a website similar to http://allforms.mailjol.net/ They are a free contact form creator. I knew they used Javascript to allow the user to create their form. But, is there away that I could possibly do it with php entirely? If you can try to explain the structure of the php as...
  13. J

    Php project help? Javascript or php?

    I'm trying to build a website similar to http://allforms.mailjol.net/ They are a free contact form creator. I knew they used Javascript to allow the user to create their form. But, is there away that I could possibly do it with php entirely? If you can try to explain the structure of the php as...
  14. J

    Php project help? Javascript or php?

    I'm trying to build a website similar to http://allforms.mailjol.net/ They are a free contact form creator. I knew they used Javascript to allow the user to create their form. But, is there away that I could possibly do it with php entirely? If you can try to explain the structure of the php as...
  15. J

    Installing php/mysql On Your Computer For Free!?

    http://www.youtube.com/watch?v=VEsQtHkuuJY
  16. J

    How to put html in php echo but, not execute the html.?

    I'm trying to do something like this... <?php echo "<p>Test</p>"; echo "<input type=\"text\" name=\"Testing\""; ?> See I want to do this but if you execute this the html will print out Test and a text box. I want it to literally print out html code.
  17. J

    What's wrong with this CSS/HTML/PHP?

    This is sort of like a css generator but my color:#; shows up like that I can't figure out what's wrong! <input type="text" name="text-color" maxlength="10" size="10" /> $Background_Color = $_POST['bgcolor']; $Margin_px = $_POST['margin']; $Border_px = $_POST['border']; $Padding_px =...
  18. J

    Does php email really work or do you need your own personal server to send

    emails directly from php script? Can I send emails from my php scripts?
  19. J

    What's wrong with this mysql/php query?

    Everything works until the end, it will not insert into the mysql table! <?php $connect = mysql_connect("","",""); if (!$connect) { die("MySQL could not connect!"); } mysql_select_db('Users'); $Username = $_POST['username']; $Email = $_POST['email']; $Email1 = "@"; $Email_Check =...
  20. J

    What's wrong with this mysql/php query?

    Everything works until the end, it will not insert into the mysql table! <?php $connect = mysql_connect("","",""); if (!$connect) { die("MySQL could not connect!"); } mysql_select_db('Users'); $Username = $_POST['username']; $Email = $_POST['email']; $Email1 = "@"; $Email_Check =...
Back
Top