Jump to content

rekha

Members
  • Posts

    38
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

rekha's Achievements

Member

Member (2/5)

0

Reputation

  1. Anyone pls help i need it urgently. Regards Rekha http://hiox.org
  2. Hi, I have a page for example http://yoursite.com/folder/xyz.php.I have to redirect this page to http://yoursite.com/folder/content.php?url=xyz.php. How can i do this using htaccess.Pls help.. Regards Rekha http://hiox.org
  3. Hi all, Thanks for your reply.I got the solution using with statement in js.The code is as follows. for (var x = 0;x < tmp.length; x++) { ins = tmp[x];//alert(ins); arrvalue = tmp[x]; row1[x] = document.createElement('div'); with(ins:tmp[x]){ row1[x].onclick=function(){sett(ins);return true;}; } val[x] = document.createTextNode(ins); elem.appendChild(row1[x]); row1[x].appendChild(val[x]); } Thanks Rekha http://hiox.org
  4. Hi, I am having a php page where in the textbox if we type h the list of names that are already stored starting with letter h will be displayed.This can be done by creating div element for each names.If i click the div element the address for that element will be diaplayed in another text box.This is written in another function.The onclick event is not working in IE.Here is the code. for (var x = 0;x < tmp.length; x++) { ins = tmp[x];//alert(ins); arrvalue = tmp[x]; row1[x] = document.createElement('div'); row1[x].onclick=function(){sett(ins);return true;}; val[x] = document.createTextNode(ins); elem.appendChild(row1[x]); row1[x].appendChild(val[x]); } When the div element is clicked the function sett() should be called and the argument should be the content in that div element.But the problem is if i click any div element the last element is passed as an argument.Pls anyone know solve this issue. Thanks Rekha http://hiox.org
  5. Hi, I have a page.I used css style z-index:1 for the image to display.I am having select box in the page.Here is the sample code. <html> <head> <style type="text/css"> img.x { position:absolute; left:0px; top:0px; z-index:5} img.y{ position:absolute; left:0px; top:0px; z-index:1} </style> </head> <body> <h1>This is a Heading</h1> <select><option value=0>1</option></select><img class="x" src="bulbon.gif" width="100" height="180"> <p>Default z-index is 0. Z-index 1 has higher priority.</p> <br><br><img class="y" src="default80.jpg" width="100" height="180"> </body> </html> This page works fine in firefox.But in IE 6 it is not working properly.Can anyone help me pls..... Regards Rekha http://hiox.org
  6. Hi, I saw the pdf manual and created.I have the following error Call to undefined function: pdf_new() in e:\mine\pdff1.php on line 3 Is there any problem with the php version.Whether i have to change any configuration in php.ini file.Pls help..... Regards Rekha http://hiox.org
  7. Hi Thanks.It works.. Regards Rekha http://hiox.org
  8. Hi, I have a php page.In that page i have lots of information.I have the print button in the page to print.Now i want to preview the page before printing.Is there any functions in php for previewing.If anyone knows pls help..... Regards Rekha http://hiox.org
  9. Hi, I have a php page where i created a xls file using file functions and i wrote the content into the file and send the file as an attachment through mail.Now i want to make the file as a pdf attachment.How can i do this. Regards Rekha http://hiox.org
  10. Hi I have a form.In that first field when we type a letter it displays a list of items and when we select a item from the list by pressing enter key it should not submit the form instead it should go to the next field.I have called a function to set the value for the second field if an item is selected in the first field.I have done like this. if(e.keycode==13){ setfn(); return false; } setfn() function is to set the value for the second field automatically if an item in the first field is selected. But it doesn't work.Pls solve this.... Regards Rekha http://hiox.org
  11. Hi I want to call the two functions like this onClick="two();one()" Regards Rekha http://hiox.org
  12. Hi I want to call two js functions using one submit button.I have tried the below code.But it gives error. <script language=javascript> function one() { document.write("hai"); } function two() { document.write("All"); } </script> <form> <input type=button value="ok" onClick="two();one()" > </form> I got the error as one is not defined. But i am getting All as output. Pls anybody solve this .... Regards Rekha
  13. Hi I want not to submit the form when enter key is pressed. Regards Rekha
×
×
  • 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.