Search results

  1. T

    subdomain redirect

    I am looking for a way to create a redirect that will do the following: redirect any subdomain to the same set of files without changing the url. We have the wildcard redirect in place but we are hosting multiple websites on our hosting package so the wildcard is sending the subdomain to the...
  2. T

    Dynamic redirect

    I have been working on this for hours and I cant seem to figure it out. index.php? bunch of different vars and values needs to redirect to newdirectory/index.php? same bunch of variables Is there a way to do this automatically like in a .htaccess file or something
  3. T

    Javascript Select Value

    Ill display my code first and then describe what im trying to do. Javascript section function ReadForm(obj1) { var data_array = obj1.os0.value.split('^'); var des=data_array[0]; var amt=data_array[1]; obj1.os0.value = des; } form code <select name="os0"> <option...
  4. T

    Javascript help

    Thank you very much works great.
  5. T

    Javascript help

    I have been racking my brain trying to find a way to make this work. I have a very large js file that is encrypted and i am selling my software. I want to be able to make some alert boxes editable without to much of a hassle. Is there a way to do the following. <script...
  6. T

    JS jQuery datepicker Help Needed

    The datepicker you are using seems that it needs to much work. I know you already have it installed but I would highly suggest working with an easier script. I have used this one in a few application I have developed and it works like a dream...
  7. T

    Radio Button Issue

    Solved the problem
  8. T

    Error: with query id #7

    I have been receiving the following error Error: with query id #7 and i have been unable to find where the error occurs. This is the code on the page. This is the query on the page that is erroring mysql_connect($db_host, $db_user, $db_pass) or die ('Error: Unable to connect')...
  9. T

    Passing JS variables from one function to another

    If i see one person say place the variable outside the functions I am going to slap them. I just read through many forums were that is all they said. I am using Ajax to pull data meaning the data is pulled into a function. I can not place the variables outside it. This is what I need to be...
  10. T

    Selling Files

    I am looking for a way to sell a file using a buy now button on my site. I do not want to use a paid service or an expensive coding package. If anyone knows of a way I would love to hear about it.
  11. T

    php form submission

    I have been working on the following code to automatally submit data to the next page. I do not want my visitors to have to click a next button. I cant find where I am going wrong. I have upgraded my php to moderate do I need to go higher or is it a fault in my coding. //create array...
  12. T

    Javascript Error

    Everything is working great now thanks for the help VPmase This is the new code if it helps anyone function varify_length() { for (var i=0; i < document.form1.RadioGroup1.length; i++) { if (document.form1.RadioGroup1[i].checked) { var radio_val =...
  13. T

    Javascript Error

    I have been trying to get this script to work for a while now and I cant seem to find the error. I have checked all names and everything is correct. if i remove the == and only use one = it half works but does not rest its self. meaning if someone changes the radio button it stays with what...
Top