Recent content by Mythia

  1. M

    How to make the Domain for ASP point to another Weblink?

    Here is my piece of code File.Exists(AppDomain.CurrentDomain.BaseDirectory & "\eventimages\sm_" & .Item("EventID").ToString & "." & .Item("Image").ToString) Then I want it to pull from another web address such as http://www.mywebaddress.com\eventimages\sm ...etc.. How do i do that?
  2. M

    How to add a Search engine in PHP?

    Hi, Im trying to add a search engine search box for my website... I want it to be able to search all the contents within the website and bring back results. But built in PHP =)
  3. M

    Design a Website Layout thats easy to be transformed to ASP?

    Hi, Im creating a website for somebody but I have no idea how to do ASP , so I will be creating the website in HTML, CSS and one of my friends are creating it in ASP... What is the best way to create the Website Coding into a easier way for it to be converted to ASP... This question maybe...
  4. M

    Can PHP handle two query such as CREATE TABLE and INSERT INTO?

    The Code Im trying to do is something like this: if ($_POST['submit']) { $sql = mysql_query("INSERT INTO database_name.table_name (name,text) VALUES ('" . $_POST['name']. "', " . $_POST['text'] . "');"); $create = mysql_query("CREATE TABLE database_name.'".$_POST['name']."' ('id'...
  5. M

    PHP - How to get a total for Customers Quantity?

    Im trying to create some php codes where I can give a customer a discount if they buy six or more items Please give me an example on how i could write this... The Quantities of the different items are held on different database rows...Im trying to get the codes to add up all the Quantities so...
  6. M

    How would you write this code??? (PHP)?

    Im trying to write a PHP code to check to see if any customers are from the state of Georgia (GA) and if they are then put sales tax on it... So far i have this.... if($checkrow['state'] == GA) { //codes are here - but for the purpose of the question i wont post all the codes } is that the...
Back
Top