Jump to content

Lefu

Members
  • Posts

    54
  • Joined

  • Last visited

    Never

Everything posted by Lefu

  1. hi micah1701, I think I am posting to site2 from site1. Or I may be misunderstanding what you wrote, as for this script I have tried to send data as "hard coded" and still nothing from site2, I do get a session that I have reached site2 and the output is my login screen. Please lemme know how it went schilly, and maybe if it worked you can share the code. Thanx.
  2. Hi guys, I hope this is the right place to post this. I have two subdomains, one has authentication login already setup, so I just want to use the "single sign on" method using curl to achieve this. below is my script. I have tested it and it does pass variables to the authentication page but I can not be logged in, I am hoping you guys can help. $passed_vars='l_username='.$_REQUEST["l_username"].'&l_password='.$_REQUEST["l_password"].'&returnURL='.$_REQUEST["returnURL"]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://example.com/play/login'); curl_setopt ($ch, CURLOPT_POST, 1); curl_setopt ($ch, CURLOPT_POSTFIELDS, $passed_vars); curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt'); curl_setopt ($ch,CURLOPT_COOKIEFILE, 'cookie.txt'); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); $store = curl_exec ($ch); curl_close($ch); when I do print_r($store) I can see the login page returned but no sessions set. Thanks
  3. Lefu

    Images reference

    Thanks for your replies guys. have good times
  4. ul{ display:inline; } will show them aligned horizantally.
  5. Lefu

    Images reference

    dear friends, lets say I have www.example.com and an images and css folder. 1. background:url(../images/image.jpg) no-repeat; 2. background:url(http://example.com/images/image.jpg) no-repeat; I would like to know if there loading differences here. thanx a lot.
  6. Thank you rhodesa, you sugestion worked the exact way I need. I have sudoku cells and they are grouped in 9 cells. now I can add this module and it will be easy to solve problems for players who are still learning the game. Thanx once again.
  7. hello guys, I have an array like var letters = new Array('a',...,'i'); then I have created arrays dynamically like var pgA= new Array('a1','a2'); var pgB= new Array('b1','b2'); and so on untill pgZ = new Array('z1','z2'); I want to have a loop like output is "pgA" not the contents. I want to work with arrays in the pgA .. pgZ without having to write pgA to pgZ manually in their own separate loops. Thank you for you help and I hope you understand what I wanna do here.
×
×
  • 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.