Jump to content

mubarakabbas

Members
  • Posts

    29
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mubarakabbas's Achievements

Member

Member (2/5)

0

Reputation

  1. <!--<link rel="stylesheet" href="css/white.css" type="text/css" />--> when am making comment line like above, its rendering diffrently. IE rendering correctly, but in firefox, comment line not accepting, whats wrong , hel me..
  2. Hi. When am checking with firebug, the Response Text "Done" is showing, but the value is not changing in HTML file, innerHTML=xmlhttp.responseText is not changing. pls help me... HTML file To replace: <div class="row"> <span class="label">أختار اللغة</span> <span class="formw"><select size="1" name="Language_ID" onchange="getMenu(this.value)"> <!-- START BLOCK : Language --> <option value="{Language_ID}" {selected}>{Language_Name}</option> <!-- END BLOCK : Language --> </select></span> </div> <div class="row"> <span class="label">Menu Type</span> <span class="formw"> <div id="asdfg"> <select style="background-color: #ffffa0" name="state"><option>Select Language First</option> </select></div> </span> </div> JS FILE // JavaScript Document var xmlhttp; //function namechange(name_fieldvalue) function getMenu(Language_ID) { /* alert(name_fieldvalue); alert(name_fieldname); alert(id_val); alert(id_fieldname); alert(table_name); */ /* if (name_fieldvalue.length==0) { document.getElementById("txtHint").innerHTML=""; return; } */ xmlhttp=GetXmlHttpObject(); if (xmlhttp==null) { alert ("Your browser does not support XMLHTTP!"); return; } var url="findmenu.php"; url=url+"?Language_ID="+Language_ID; xmlhttp.onreadystatechange=stateChanged; xmlhttp.open("GET",url,true); xmlhttp.send(null); } function stateChanged() { if (xmlhttp.readyState==4) { Response.ContentType = "text/plain"; Response.Expires = -1; Response.CacheControl = "no-cache"; document.getElementById("asdfg").innerHTML=xmlhttp.responseText; } } function GetXmlHttpObject() { if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari return new XMLHttpRequest(); } if (window.ActiveXObject) { // code for IE6, IE5 return new ActiveXObject("Microsoft.XMLHTTP"); } return null; } findmenu.php $response = "done"; //output the response echo $response;
  3. Hi, I am having a kind of project where i want to move the div block with dynamic content, up and Down, similiar to yahoo homepage.(Move Top and Move Down With arrow Markd in Yahoo) Is it possible to do, do u guys have any idea pls help me. thank you
  4. Hi, How to toggle the Submit Button with Activate and Inactivate Button, if we click the button it wants to enable or disable and text wants to be change according to that. Thank you,
  5. Hi, Me too running the same problem, not only TINYMCE, fckeditor too having the same problem, where it is not functioning in javascript call..
  6. I want to manage the Homepage from Homepage itself, when admin is logging, those management controls wants to be visible.
  7. Hi, Is there any CMS , that manages the content of the Hompage by Administrator, for example how many news items to be shown, activating or deactivating the item and etc. Thank You
  8. Hi, I have a search form, with select boxes, if am selecting the value from the form, it works good, but when i am integrating the pagination script, it messed up. this is my script...plz help me [attachment deleted by admin]
  9. Hi, $sql = SELECT * FROM articlessection where 1 and ArticlesSection_Name LIKE %'ar'% and Language_ID =2 Order by ArticlesSection_Order ASC echo $sql; giving me syntax error in like
  10. Hi, I am in desperate help, i want to search the single table, based on 2 List boxes, how to do this.. Thanks
  11. Hi, problems getting in array values, am getting only last item in the array, whats the solution <input type="checkbox" name="check_list" value="A" /> <input type="checkbox" name="check_list" value="A" /> <input type="checkbox" name="check_list" value="A" />
  12. Hi, I am using the following code to save the SQL file, it nicely works on firefox, but not in IE7 <? $yourfil=$_GET['filename']; $yourfile=$yourfil.".sql"; header ("Content-Type: application/download"); header("Content-type: application/octet-stream"); header ("Content-Disposition: attachment; filename=$yourfile"); header("Content-Length: " . filesize("$yourfile")); $fp = fopen("bak/$yourfile", "r"); fpassthru($fp); ?> in ie7, some sql files are saving but some couldnt, i have some arabic fonts in sql file, whether that might be the problem, ??? but the same one working in firefox fine. looking for your help..
×
×
  • 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.