Jump to content

Lautarox

Members
  • Posts

    132
  • Joined

  • Last visited

    Never

Everything posted by Lautarox

  1. Here's the link to my code http://pastebin.php-es.info/4465 Can someone tell me why $code isn't beeing printed? it only shows Codigo: 'M'
  2. When you start a session on the page, it loads automatically the $_SESSION array with the values you gave it, if the session is still alive.. so it will load the session values in the 3rd page
  3. does this script saves the cookies when you login or you use you'r own cookies?
  4. I have a problem while programming, im doing a login into a webpage with curl, everything works fine, but i cant use any other resources from the web cause i'm not loged in anymore, how can i store cookies when i login and use them trough all the script?
  5. Yes, sure, but im trying to handle the cookies trought curl, im trying to connect to the webpage, use the cookies that the login made trough all the code..
  6. ¬¬ What about cookies? can i retrieve the cookies from the login and use it all long the script?
  7. Thanks! Now.. i have a question... im logging in into a web, how can i keep the login session alive? my webpage supports cookies..
  8. Im having a really strange problem, it's like if the $inc var isn't increasing, like if it wasn't recognised cause, Codigo prints ' ', whats happening? im using php in console, but i don't think that's the problem, i also made a function to increase this var, but it doesn't work either.. Thanks <? $inc = 7374458; $url = "***************"; $codigo = "M".$inc; function increase() { $inc += 1; } function get_web_page($url, $method) { if($method == 0) { $postfields = '****=mobile&******='.$codigo.''; $url = "************************"; } else { $postfields = 'u_name='.$argv[0].'&p_word='.$argv[1].''; $url = "**********"; } $options = array( CURLOPT_RETURNTRANSFER => true, // return web page CURLOPT_HEADER => false, // don't return headers CURLOPT_FOLLOWLOCATION => true, // follow redirects CURLOPT_ENCODING => "", // handle all encodings CURLOPT_USERAGENT => "spider", // who am i CURLOPT_AUTOREFERER => true, // set referer on redirect CURLOPT_CONNECTTIMEOUT => 120, // timeout on connect CURLOPT_TIMEOUT => 120, // timeout on response CURLOPT_MAXREDIRS => 10, // stop after 10 redirects CURLOPT_POST => 2, CURLOPT_POSTFIELDS => "$postfields" ); $ch = curl_init($url); curl_setopt_array($ch, $options); $content = curl_exec($ch); $err = curl_errno($ch); $errmsg = curl_error($ch); $header = curl_getinfo($ch); curl_close($ch); if($method != 0) { $test = ereg("You must log in to access this page.", $content, $matches); if(!$test) { echo "Se ha logueado satisfactoriamente, \n"; $nextmethod = 0; } else { die('No se pudo loguear correctamente '.$argv[0].' , '.$argv[1].''); } } else { $test = ereg("Thank you", $content, $matches); if($test) { $completed = 1; echo ", usuario: '$argv[0]' password: '$argv[1]' con el code: '$codigo'"; } else { increase(); echo "Codigo: '$codigo' \n"; $nextmethod = 0; } } } get_web_page($url, 1); do { get_web_page($url, $nextmethod); } while($completed = 1); ?>
  9. Can the web be read on execution time without downloading? and example will be appreciated
  10. I want to make a program that creates a connection to a webpage, sends some vars trough POST and check the html's result page for some code.. how can i do that?
  11. Ohh thanks, now i realise =P Thanks to all
  12. The problem is that i don't have the <br> tags in the post, it is supposed to save the new line as it is in the textarea to the database.., and what is wrap supposed to do?
  13. Hi everyone, i'm having a problem, im coding a blog, and when do and when i insert the what is written in the text area, the "new lines" (what i mean is when you press enter) aren't there, all the text is in the same line, the type of data in the mysql is text. And i have another question too, how can i add a limit to the textarea, that when y pass the size it continues writting in a new line? Thanks
  14. Not really, i was triying to make a pre-configurated way of showing the date from a time() function, I want to modify the date format with vars to make it easier
  15. dont lose the thread
  16. Look if value is printed, maybe you forgot the " " on the echo, if everything its ok, try looking deeply in the form code
  17. Try using a hidden input <INPUT type="hidden" name="Submit" value="Submit">
  18. What i want is to made a cfg that stores how the date will be shown
  19. How can i input a variable in the date function? i want to do something like this $arrtime['date'] //equals to d/m/Y or whatever and $arr['fecha'] to a saved time () $date = date("$arrtime['date']",$arr['fecha']); And, what about somthing like this the last $arrtime['date'], plus $arrtime['time'] var that contains G:i:s $date = date("$arrtime['date'] '$arrtime['time']'",$arr['fecha']); Any help? Thanks
  20. Thanks, ill give it a try
  21. Well.. im triyin to make a a type of date, stored in mysql that can be formatted as its setted in the db, well, how do you recommend me to store the date value? in wich type of mysql data type? wich method in php? Thanks!
  22. lol, you'r right, thanks
  23. Can someone tell me whats wrong with this login function? Everything works correctly exept for the if, i have echoed evrything and looks perfectly, buy i can't make de if work ¬¬.. function login ($usuario, $password) { parent::connect(); $query = "SELECT username, password, level, email FROM users WHERE username = '$usuario'"; $resultado = parent::query($query); $encrypted = sha1($password); while($arr = parent::arr($resultado)) { if ($username == $arr['username'] && $encrypted == $arr['password']) { $_SESSION['username'] = $arr['username']; $_SESSION['email'] = $arr['email']; $_SESSION['level'] = $arr['level']; $_SESSION['logedin'] = 1; return true; } else { return false; } } }
  24. Are you replacing or the $_POST vars there?
×
×
  • 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.