
Lautarox
Members-
Posts
132 -
Joined
-
Last visited
Never
Everything posted by Lautarox
-
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'
-
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
-
does this script saves the cookies when you login or you use you'r own cookies?
-
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?
-
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..
-
¬¬ What about cookies? can i retrieve the cookies from the login and use it all long the script?
-
Thanks! Now.. i have a question... im logging in into a web, how can i keep the login session alive? my webpage supports cookies..
-
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); ?>
-
Help (searching into html code and inputing POST vars)
Lautarox replied to Lautarox's topic in PHP Coding Help
Can the web be read on execution time without downloading? and example will be appreciated -
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?
-
Ohh thanks, now i realise =P Thanks to all
-
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?
-
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
-
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
-
dont lose the thread
-
Passing array variable through $_POST via serialize
Lautarox replied to webent's topic in PHP Coding Help
Look if value is printed, maybe you forgot the " " on the echo, if everything its ok, try looking deeply in the form code -
Try using a hidden input <INPUT type="hidden" name="Submit" value="Submit">
-
What i want is to made a cfg that stores how the date will be shown
-
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
-
Thanks, ill give it a try
-
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!
-
lol, you'r right, thanks
-
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; } } }
-
[SOLVED] Returning modified values to $_POST var
Lautarox replied to Lautarox's topic in PHP Coding Help
Thanks, =) -
[SOLVED] Returning modified values to $_POST var
Lautarox replied to Lautarox's topic in PHP Coding Help
Are you replacing or the $_POST vars there?