Question

Hi good day SO i would just like to ask why does the behavior of my code happens like this when I execute the page instead of executing the function of the php file.. I am also out of a clue if I still should include the if I already have a php file? Thanks in advance I am just a newbie in web development please bear with me thanks again

 <form name='contact-form' action='mailto:dsadas@yahoo.com' method='POST'>
  <div>Name: </div>
     <input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' type='text' value=''/>
     <div>Email:</div>
       <input class='contact-form-email' id='ContactForm1_contact-form-email'              name='email' size='30' type='text' value=''/>
           <input class='submit' id='ContactForm1_contact-form-submit' type='submit' value='Send'/>
        <div style='text-align: center; max-width: 450px; width: 100%'>
        <p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'/>
        <p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'/>
          <object width="400" height="300" type="text/html"   data="https://googledrive.com/host/0B-lp0v7FqyqRYzlmR3FfcDlGdGc"></object>
                </div>

Was it helpful?

Solution

The Answer: You cannot host code on Blogger: anything that told you that is wrong. Go host it elsewhere.

You probably read a guide like this (This does not deserve to be linked, it is full of wrong information but it serves the purpose of an example). This guide even says that you can host PHP scripts on Google Drive; I doubt that very much. If you want to host CSS and JS on Google Drive then that is a different story, because your users browser will download the code and run it.

To run a server side language like PHP you will still need to host the code yourself. Try using Google App Engine to host your PHP apps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top