Jump to content

zohab

Members
  • Posts

    223
  • Joined

  • Last visited

Everything posted by zohab

  1. Hi, On my site user need to fill form and form contains email field. user will enter email as xyz@example.com,pqr@zapak.com ,abc@gmail.com etc I need to check example.com ,zapak.com,xyz.com,gmail.com exists or not.
  2. Hi, I am a php developer and In my new project I have DLL files. These files add/edit/delete records from my database. I want to do some customizations. I have gone through articles on Google. Now I am looking for any solution to create dll and perform different operations example :add/edit/delete records in database. I am new in this .
  3. Hi, I have following pages and these pages information entered by users visiting site. 1.contact us 2.Registration 3.Demo 4.Review etc. Only user having company email addresses are allowed to fill the form. example user1=>user1@gmail.com=>not aallowed user2=>user2@companyname.com=>allowed I want list of all email service provider like yahoo,gmail,hotmail,zapak etc.
  4. Yes json string $build_array=json string Following need to echo json string echo json_encode($build_array);
  5. Hi, I have following information with me 1. a.18.4687712,73.8830701 b.address1 c.images/refresh.gif 2. a.18.4708117,73.9065883 b.address2 c.images/plus_inline.gif 3. a.18.4857608,73.8962994 b.address3 c.images/plus.gif Using above information I want to create array in following format. {"markers": [ { "point":new GLatLng(18.4687712,73.8830701), "homeTeam":"address1", "markerImage":"images/refresh.gif", }, { "point":new GLatLng(18.4708117,73.9065883), "homeTeam":"address2", "markerImage":"images/plus_inline.gif", }, { "point":new GLatLng(18.4857608,73.8962994), "homeTeam":"address3", "markerImage":"images/plus.gif", }, ] }
  6. Hi, I am using drupal 6.x version and i have created some pages using drupal admin panel. When i create new page i can see input format as follow I want to add input format php.What module used for this? Filtered HTML * Web page addresses and e-mail addresses turn into links automatically. * Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> * Lines and paragraphs break automatically. Full HTML * Web page addresses and e-mail addresses turn into links automatically. * Lines and paragraphs break automatically.
  7. I have read information on following url and it says AJAX = Asynchronous JavaScript and XML. AJAX is based on JavaScript and HTTP requests. http://www.w3schools.com/Ajax/Default.Asp
  8. Hi, I have implemented ajax functionality in my site. It is working fine with http://www.example.com but when I use https://www.example.com ajax stop working. My question is ajax work with https?
  9. Plz try following example <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script language="javascript"> function validate(x){ if(x=="1"){ alert(x); return false; // document.frmlogin.submit().disabled; } } </script> </head> <body> <form action="" method="post" name="frmlogin"><table width="200" border="1"> <tr> <td> </td> <td><label> <input type="text" name="textfield" /> </label></td> </tr> <tr> <td> </td> <td><label> <input type="submit" name="Submit" value="Submit" onclick="validate(1)" /> </label></td> </tr> </table> </form> </body> </html>
  10. when i do document.loginfrm.submit(); then form submit what i need to do to restrict form not to be submit after clicking on <input type="submit" name="submit" value="Submit" class="submit" onClick="showCustomer()"/>
  11. Hi, In my site i want to restrict user from submitting form example if(condition==true){ document.loginfrm.submit=true; }else{ document.loginfrm.submit=false; }
  12. Hi, I have 3 tables 1.jobs 2.candidate_information 3.job_candidate_information_relationship jobs => job_id|job_title 1|job1 2|job2 3|job3 4|job4 5|job5 candidate_information=> candidate_information_id|candidate_name 1|candidate1 2|candidate2 3|candidate3 4|candidate4 5|candidate5 job_candidate_information_relationship=> id|job_id|candidate_information_id 1|1|1 2|1|2 3|1|4 4|1|5 5|2|2 6|2|4 7|3|1 8|3|5 9|3|2 9|4|3 9|5|5 I want to select all jobs by candidates. Output=> Jobs | Candidates job1 | 3 job2 | 2 job3 | 3 job4 | 1 job5 | 1 Select job.job_title and count of candidates for job ?? My mysql version is 5.0
  13. Hi, In my site, When user login then I set username,uniqueid in session and create new entry in active users section. When user logout then i destory session and delete entry in active_users section. example A.user1 login then 1.$_SESSION['user1name'];$_SESSION['uniqueid']; 2.insert into active_users (uniqueid,username) values('1','user1name'); B.user1 logout 1.session_destory(); 2.delete from active_users where username='user1name' and uniqueid='1'; When user click on logout link then he will be logout and operation B is perform. when user close browser then session_destroy() but active_user table entry does not update because i do not know that user close the browser. How can I delete entry from active users table when user close browser.
  14. Hi, I can see the link in admin side "WordPress 2.8.4 is available! Please update now." when i click on it it takes me to wordpress download page. i have to download the wordpress? i through it will update my system to 2.8.4 automatically.
  15. Hi, I want to show different url to my users when they access my site. example 1.I will call http://www.example.com/blog1 page but user will se http://www.example.com/ in browser 2.I will call http://www.example.com/blog1/user1profile page but user will se http://www.example.com/ in browser
  16. Hi Bricktop , I am using session. I have to do the settings in php.ini file through ini_set function but which one? ini_set('session.gc_maxlifetime',30); ini_set('session.gc_probability',1); ini_set('session.gc_divisor',1); ini_set('session.cache_expire ',180);
  17. Hi, In my site when user login then username and password stored in session and if user does not close browser and be login in the site If my session is timeout then user will be logout . I want to set session timeout to be 10 days after 10 days session will be timeout
  18. Hi, In my project I want to develop functionality 1.Fetch data from database example select firstname,lastname,email from tablename; 2.Write data into pdf file in tabular format First Name | Last Name | Email xyz | pqr | xyz@example.com any script for this?
  19. Hi, I am using wordpress 2.5.1 version on my server. I want to upgrade to version 2.8.4. my data will be lost OR Secure?
×
×
  • 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.