Jump to content

jimsanghvi@hotmail.com

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jimsanghvi@hotmail.com's Achievements

Member

Member (2/5)

0

Reputation

  1. Dear All I am new to ckeditor . Please need some help . Say for example i have posted my web page on godaddy server and i want to make some change on text for eg : index.html page . So when i make some changes and click on save button of ckeditor tool . Will that web page posted on godaddy server will be automatically updated and when i reopen or refresh that page posted on godaddy will show that changes . Will i need to publish that page Please please help
  2. Say for eg i have hosted my website on godaddy . Now for eg there is a web page index.html . now i install the folder of ckeditor on godaddy . Now say i open the web page for eg www.marte.com/index.html in ckeditor and make the change and save it . Then when i refresh the index.html that is www.marte.com/index.html while the change reflect or do i need to publish or it will automatically save the changes and reflect it On button click the change should reflect will this be done through php or javascript
  3. Dear All : I install ckeditor and there is a folder _sample in that there is a file fullpage.html . I made changes to text in text area and clicked on save button , but it did not save . Want i want to do is when save button is clicked the page open for editting say for example index.html . then on save button click it should make changes to index.html page on page refresh
  4. Thank u sooooo much voip03 . You are just too good . Thanks my issue is resolved . Thanks a ton
  5. Dear All I am getting the value of element in the form through Ajax . Now my problem is xmlhttp.open("GET","simple2.php?q="+str,true); from simple2.php i want to return the value of $q to main page that is simple1.php So once i get the value of $q on simple1.php then i can do some if condition in php . ie <?php if ($q =="a" ) { ?> <div class = "abc" > <input type="text" name="abc" /> <?php } ?> Please have a look at the code below Simple1.php <html> <head> <script type="text/javascript"> function showCD(str) { if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("txtHint").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","simple2.php?q="+str,true); xmlhttp.send(); } </script> </head> <body> <form> Select a CD: <select name="cds" onChange="showCD(this.value)"> <option value="">Select a CD:</option> <option value="Bob Dylan">Bob Dylan</option> <option value="Bonnie Tyler">Bonnie Tyler</option> <option value="Dolly Parton">Dolly Parton</option> </select> </form> <div id="txtHint"><b>CD info will be listed here...</b></div> Simple2.php <?php $q=$_GET["q"]; echo $q; ?> [attachment deleted by admin]
  6. Dear All I have a form say i have selected Volva from drop down box . So without clicking on submit button when i move to next field that is `<input>` the value that is volva should get store in php variable <html> <body> <form action=""> <select name="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat">Fiat</option> <option value="audi">Audi</option> </select> <input type="text" name="abc" /> </form> </body> </html>
  7. Sorry i thought your name is richard , but i think you have written proverb under your photo , so i got confused
  8. Thanks Richard for fast reply , but what i want to do is when submit button is clicked it get redirected to abc.php page . On this page i am storing it in a variable and then it get stored in database . So when a person click on bb click or cc click the drop down box wil change , but should store in same variable on next page . Uploading file again [attachment deleted by admin]
  9. Dear All what i am trying to do is when i click on the submit button and try to get the value it is not displaying it properly . I am writting the code of 2 file down 1) enable.php 2) abc.php File Name : enable.php <html> <head> <script type="text/javascript"> function showdetail(boxid){ document.getElementById(boxid).style.display = "block"; } function hidedetail(boxid){ document.getElementById(boxid).style.display = "none"; } </script> </head> <body> <form name="abc" method="post" action="abc.php"> <ul> <li><a id="r" href="#" title="" alt="" onclick="showdetail('res'); hidedetail('comm');">bb</a></li> <li style="width: 1px;">|</li> <li style="width:85px;"><a id="r" href="#" title="" alt="" onclick="showdetail('comm'); hidedetail('res');">Cc</a></li> <li style="width: 2px;">|</li> </ul> <div id="res" style="display:none;"> <select id="pr" name="pr" class="textarial12 textcolorgrey flot_left"> <option value="Hello">Hello</option> </select> </div> <div id="comm" style="display:none;"> <select id="pr" name="pr" class="textarial12 textcolorgrey flot_left"> <option value="Hi">Hi</option> </select> </div> <input type="submit" value="submit" /> </form> </body> </html> File Name : abc.php <?php $PropertyType=$_POST[pr]; echo $PropertyType; ?> [attachment deleted by admin]
  10. Please help . What i want to do is . Say for example : There is a URL www.site.com/post.php when some one directly try to open or type this URL in browser . It should ask user to login in or redirect him to login page and once he is successfully login in then only this page should be visible to him That is if he is not a member then www.site.com/post.php should not be visible to him or her
  11. I want to display message on same customised popup window . Say for eg when i click on signin link a popup window comes and when i click on submit button , it get redirected to loginpage.php where php code for connection is written and other code of php is wriiten for database fetching . and if login credential match it get redirected to main page So what i want to do is when some one click on signin link and popup window open up and when clicked on submit button , if the credential dont match it should throw error on same popup window before it closes
  12. Dear All I want to display message on same customised popup window . Say for eg when i click on signin link a popup window comes and when i click on submit button , it get redirected to loginpage.php where php code for connection is written and other code of php is wriiten for database fetching . and if login credential match it get redirected to main page So what i want to do is when some one click on signin link and popup window open up and when clicked on submit button , if the credential dont match it should throw error on same popup window before it closes
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.