Jump to content

kishan

Members
  • Posts

    49
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kishan's Achievements

Member

Member (2/5)

0

Reputation

  1. try these: if u dont want a navigation .. even add the code like <a href="#" title="YOUR MSG GOES HERE"/>YOUR TEXT</a> or on mouse over show the div on top of it by setting the div position as 'absolute'
  2. hi, in my page i have a text box , i will enter some text clicks on submit now it navigates to the same page,now when i click on back nutton the prev entered text is staying back on the text field... inorder to remove this i have added the following code <head> <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> <META HTTP-EQUIV="EXPIRES" CONTENT="-1"> <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> </head> the cache is clearing in mozilla but in IE still the text is showing .. how to resolve this>>>>
  3. 'onkeyPress' u have to call the Ajax method which retrieves the Db info starts with those letters and the result u have to display in a div .
  4. How to convert movies to 3gp do we need to use ffmpeg or any other tool is there...
  5. Hi Iam working on a video stream conversion to mobile i was absolutely no idea how can we achieve this task, do we need any specific API's and any body worked on this Please help me... Thanks & Regards Prasad.
  6. Hi all, hope this is a simple question but im not getting please help me after some process i will have a data in my iframe like this <iframe id="upload_target_my" name="upload_target_my"> <status id="1">Frame added to the pod.</status> </iframe> inside iframe there is no head or body tags. how can i get the data b/w"<status></status>" tags I.E---->'Frame added to the pod' Please help me.
  7. can any body tell me how to check the js errors in safari 3.0.3 wts the link to download web inspector ...? Please
  8. Hi in my ajax call iam accessing a server-side pade sm thing like req.open("POST", "http://xx.xx.xxx.xxxx/xxxXml", true); im getting the following error uncaught exception: Access to restricted URI denied (NS_ERROR_DOM_BAD_URI) how ever if i place the same file its working the problem is its not accesing the url from localhost wt shld be done please help
  9. see iam using sm thing like this ini_set("include_path",get_include_path().PATH_SEPARATOR.dirname(__FILE__)); and my echo get_include_path();results this .;C:\xampp\php\pear\;C:\xampp\htdocs\Opah\modules\atmailopen But i have a file called atmail.php under C:\xampp\htdocs\Opah\modules\atmailopen if i give var_dump(file_exists('atmail.php')); results bool(false). whats the problem
  10. i have a module module1 in my app app1 instead of giving the following syntax in all my module1 files like this include(dirname(__FILE__)."/header.php") can i have some thing like set_includepath(dirname(__FILE__)) in my module index page please help me
  11. hi sorry like iam including like set_includepath("c:\xamp\htdocs\app\modules") is it not effects i will try with this include(dirname(__FILE__)."/header.php") will this make as relative path in my sub modules
  12. are u doing any compleax queries or any big logic stuff there in your manual page may be it can help u like in ur entire app when the manual was initially loaded keep a session to have all the file contents and when ever if the session is there directly echo the sess var (it is suggested only when ur not changing the menu content)
  13. HI if u know the address u can specify like this.. $key=google apikey. $apiURL = "http://maps.google.com/maps/geo?q=$zipcode,$country&key=$key&output=xml"; $addressData = file_get_contents($apiURL); $coordinates = split('[,]',between("<coordinates>", "</coordinates>", $addressData)); $lat = $coordinates[1]; $lon = $coordinates[0];
  14. HI all please help me regarding the include path iam having a app which inlcudes so many modules for ex: app/module1 ...app/module2 now in module1 i want to include a relative path for my module1 files so that if i give inlcude("header.php") it should search in my app/module1 instead of app so i will not change any of my module1 files to navigate to the right page iam using the set_includepath("http://localhost/app/module1"); but still the include("header.php") throwing a 404 error. how can i achieve this...
  15. function getResponse() { global $db; echo "<select name='SiteArea'>"; $resultshape = mysql_query("SELECT * FROM shape"); while($row = mysql_fetch_array($resultshape)) { $id=$row['id']; $name=$row['name']; echo "<option value='$name'>$name</option>"; } echo "<select>"; } call like :$res=getResponse();
×
×
  • 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.