Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. var url = "ajax_index.php?cStatus=chklogin&id="+form.id.value+"&passwd="+form.passwd.value;
  2. xmlhttp = uzXmlHttp();
  3. xmlhttp.open("GET", url, false);
  4. xmlhttp.send(null);
  5. result = xmlhttp.responseText;
  6. if(result!="true"){
  7. if(result=="false"){
  8. alert('Invalid user/password ');
  9. }else{
  10. alert(result);
  11. }
  12. }
  13.  
  14. $db="(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))";
  15. $oracle_user="SFCORCLP";
  16. $oracle_pwd="SFCORCLP";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement