Search results

  1. K

    I need help with PHP include() echo and variables?

    I am having trouble taking a variable from my include and echoing it. It's a nav bar that determines what css class to use based on the file name. template.php: <?php $nav_bar = "<div id=nav> <a href=index.php><div class=<?php if($page == index.php){echo active}else{echo...
  2. K

    Add a php script to html?

    in the header of your html index page: (if you have variables to include in the index page) <?php include("login.php"); ?> then the form where they login that will POST the user's input to login, (which you may need to change) in the body section: <form name="login" method="POST"...
  3. K

    How did whitepages.com/txt create their texting form? (PHP)?

    Well, not the form. I understand that each phone has an email address assigned to each carrier, having said that, how does whitepages do it without asking for the carrier? I've been trying to create a PHP Texting service but haven't been able to make it super user-friendly. Any help is greatly...
  4. K

    I have to take a flash exam tommarow..help?

    it's the adobe rich media communication flash cs3 certiport exam. I had to pay 26 for the test and 5 more for a retake. I failed the first try, which was today. I tried studing for it but did a bad job doing so. The teat has five main points; Understanding Adobe Flash Interface Setting Project...
  5. K

    MySQL and PHP question about calling a function.?

    I have a mySQL database connection file, called conn_guitars.php and all that is in it is my user name and password (as well as the host) (the following content was generated by dreamweaver, I'm still learning) <?php # FileName="Connection_php_mysql.htm" # Type="MYSQL" # HTTP="true"...
  6. K

    I need help creating a php mail form, I need to be able to send an attachment.?

    Here is what I have so far (which works fine): <?php $to = $_POST['to']; $from = $_POST['from']; $sub = $_POST['sub']; $msg = $_POST['msg']; $headers = "From: ".$from. "\r\n"; $subject = "$sub"; $msg = "$msg"; if (mail($to, $subject, $msg, $headers)) { echo("<p>Message successfully...
  7. K

    How to add a php email form in web page maker ?

    Put the php page in the form action="" place. You also need to have smtp enabled to send email via php. -Aus
  8. K

    I need a free php and smtp host..?

    All the sites I have tried either are down, don't support smtp, or have crappy sites. I have tried about 15 different websites. L4rge.com worked at one point, but not anymore.. Please don't give me a list from google, i've tried most of them. Please give me an answer from actual expierience, not...
  9. K

    Is there a website that I can test my php files on?

    Please keep in mind I want it to be free..
Back
Top