Search results

  1. S

    php include unreliable

    yes Edit: I tried changing the include to require instead to help promote some error reporting, that didnt change anything either. It seems its not even reading like its ignoring the code. Any thoughts?
  2. S

    php include unreliable

    sorry that didnt work either. I wish I was getting some error reporting to help out. But all I get is nothing, just the other regular code. Is there a certain permission code I need to have this work for the php file I'm calling? That is only thing I havnt tried so far.
  3. S

    php include unreliable

    Does the file have to be called "f.php"? I named it "renavbar.php" Here is the code for it: <div id="ele1"> <?php include "renavbar.php"; ?> </div> As for the file itself: <php echo ' <html> <table width="100%" border="1"> <tr> <td> <!--main menu--!> <a href="index.html"><img...
  4. S

    php include unreliable

    Thank you for your help I have tried everything you suggested, but it seems to still not work. Could this be a hosting issue or setting I need to change? I currently have php v3 which I upgraded for this exact issue. Is there anything else I should be aware of that would make this work again...
  5. S

    php include unreliable

    Thanks for your help everyone. jspcodes, are you saying I should use echo " " instead of echo ' '? Seeing as I am using a lot of html in the external file, wouldnt using double quotes for the echo cause a lot of conflicts? DeadBattery, is the <div> tag necessary to aid in calling the external...
  6. S

    php include unreliable

    the echo ' ' function was not used to call the the file. It was: <? php include "file.php";?> In the file itself I used echo' ' to output the html. Would I need to put ";" in the end of each line of code in the included file even if its html? If so how would I code in the "{}" to block...
  7. S

    php include unreliable

    I tried the code and it worked for about 10 minutes then it stopped. I went through and made sure there was conflicts with the single quotes. echo ' ' Still it doesnt work. I am using the php to include external files written in html. Any suggestions about how to make this work more reliably?
  8. S

    Rollover help needed

    ok so seeing as the name of the image on photobucket is "homeblue.png" Then the syntax would be: onmouseover="document.homeblue.src=homeblue.src"; If I am using a "document" tag in the mouseover event should I add a document.homeblue = " " to the Javascript in the <head> tags? I realize...
  9. S

    Rollover help needed

    I have tried most of the different ways to get it to work, I do have one question about the "onmouseover" event you stated onmouseover="this.src=homeblue.src;" The part about "this.src" what does "this" apply to? should that located somewhere in the Javascript? or is that a generic name which...
  10. S

    Rollover help needed

    Thanks a lot for the help but it seems the tutorial link you provided doesnt work. I making slight changes all over the place as well, and I still get no result. Do all of the rollover buttons need to be changed to the new format to get the effect?
  11. S

    Rollover help needed

    I am in need of some Javascript rollover help. Here is the code that I have so far which does not seem to work if (images) { homewhite = new image (); homeblue = new image (); foreclosureswhite = new image (); foreclosuresblue = new image (); listingswhite = new image (); listingsblue =...
  12. S

    guestbook script PHP

    Thank you very much for the help, I got the smileys working. found out what I needed to do was CHMOD each image over to 0777. Now I seem to have a problem with getting the other pages to work when I press the sign button. The sign button is programmed to activate gb_sign.php which makes sense...
  13. S

    guestbook script PHP

    Thank you for the help, though I get the same problem after CHMOD to 0755. may I ask what makes you feel its 0755? IS there a place in the script that is identified to that number? If so where can I find it? You don't have permission to access /images/s3.gif on this server. Additionally, a 404...
  14. S

    guestbook script PHP

    That helped out a lot, but for some reason now, the images which are put into a seperate folder called images are not being accessed. In the code it has the link in there properly but all I get on the web page is the "alt" message instead of the actual image. I also had this problem with the...
  15. S

    guestbook script PHP

    Thanks for the input I have put the index.php file as the main, all it seems to give me is this: http://mwebbuilder.x10hosting.com/index.php Im guessing the echo and print functions have not been properly formatted yet for the html come up. here is the code for index.php <?php...
  16. S

    guestbook script PHP

    I am in need of help installing a guestbook script called hnguestbook. I have uploaded all the files. I understand that I need to convert the php files over to a text file before uploading, and the gif files in binary mode (not sure how to do that). Also I am not sure which script is the one I...
  17. S

    form validation w/Javascript

    I have email form created with the javascript validation already coded. When I click on the submit button no alert boxes pop to warn me I dont have the fields entered. Can anybody help me to get the JS to take action when the submit button is clicked? here is the page of code including the JS...
  18. S

    thank you page

    That helped a lot thanks.
  19. S

    thank you page

    Thanks a lot for the info. If I were to just echo the thank you message (which is in html) do I mearly type: echo <html> <head> </head> <body> <table border="1" width="100%"> <tr> <td width="10%"> <map name="homeleft" id="homeleft" align="left"> <area shape="rect" coords="10, 10, 212, 219"...
  20. S

    thank you page

    I am in the process of creating an email submit button, I have my php code debugged, but I am trying to add a thank you page with a cookie attatched so as to thank the client by name entered in the name field. I have the code JS for it here: <title>Thank you for your submission</title>...
Top