@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6



Comments:

<0> your dad makes my mom skeptical
<1> seeing a warning on a secure site?
<1> he skeptical'd your mom twice last night
<2> i always knew Tb was a little beaner.
<3> Evulish & pizza_milkshake : I understand , but my only problem with is , how can i detect and remove those http over https.
<3> Links.
<3> Line of cod
<3> Something i can search and work on
<1> you should have placed them there?
<4> ansimation: nadda just woke up :o
<4> more studies :(
<0> SecurePhp: you don't control what is on your pages?
<1> gwt is only for linux or windows?
<3> Yeah i have control. But you guys know so deep about http and all that. and i just program as a hobby on the surface. what i understood i need to remove everything http over https. But my problem is i'm looking at my pages (code) . but i don't understand what you mean with http so i can remove them or make them https. I feel embarresed not understanding you guys but i hope you guys undertand what i'm writing now , to explain what i aint getting..
<1> uhm
<1> at the beginning of links, you have something like http://www.site.com/ right?



<1> if you want it to be https, change it to https://www.site.com
<0> SecurePhp: if the url has a http:// it's a ________, if it starts with https:// it's __________
<1> links, img src's, javascripts, css stylesheets, etc
<5> Iam so stressed it's not working for me
<3> Thanks guys..
<3> now i'm on top of it
<1> w0rmzw3rth: what's not?
<5> All I want to do is have a php script that reads all bold text on frame1.html and then saves it as a list on frame2.html only the bold words from frame1.html extracted on frame2.html
<1> ok.
<1> so where are you stuck?
<1> what have you tried?
<5> it's just not working for me
<1> what isn't?
<5> right now I have a website with 2 frames that works I have frame 1 working perfect
<1> yes
<1> i know what you want
<1> but what have you tried
<5> now all I need is the php code for frame2 to extract the bold text on frame1
<5> preg_match_all
<1> can you be a TINY bit more specific
<5> preg_match_all("/(<([\w]+)[^>]*>)(.*)(<\/\\2>)/", $html, $matches, PREG_SET_ORDER);
<5> evulish i've been @ this for days man .. I just don't understand I need to get this done lolz
<1> i thought you just wanted to match bold text
<1> the easiest way is to just use DOm
<5> whats DOm?
<1> document object model
<5> I have my insite search engine on frame 1 you type what you wanna search for in the text box on frame 1 when frame1.html finish's it's search anything You Specified in the textbox will be bold letters on frame1.html
<5> I need to seperate the bold words from the non bold words , I need the bold words copied onto frame2
<0> w0rmzw3rth: php doesn't know anything about frames
<4> go js
<0> if you're submitting a form to a page, which is already being processed by php, then no problem
<5> yes
<0> and the words you're searching for you want displayed on the result page?
<5> yes
<0> echo "Results for "<b>" . $_GET["whatevertheformfieldiscalled"] . "</b>";
<5> <?php
<5> echo "Results for "<b>" . $_GET["cumslut.html"] . "</b>";
<5> }
<5> ?>
<5> is not working
<1> uh
<1> cumslut?
<6> i saved html tag on mysql, but it shows <b>bold</b> not bold
<6> what should i do ?
<1> totenkopt: mysql doesn't parse html
<1> it's a database server, not a web browser
<6> ic
<6> and ? any tag should i use ?
<1> .. to do what?
<6> to make it shows as bold not <b>bold</b>
<1> in mysql?
<1> don't save the html tag in the database.
<6> in my php script
<7> I need my script to browse another web page. It doesn't even need to wait for the results to come back. Can someone point be at the proper function?
<7> toss in an extra "me" in there somewhere
<1> Keneto: you want to redirect the user?
<1> or load a page in php
<7> load a page... for paypal's notification system...
<0> w0rmzw3rth: the form field, not the page
<7> so the server needs to "see" a brief connection from my end
<1> Keneto: check out any of php's file-handling functions



<1> file_get_contents or readfile
<1> or fopen
<0> <input name="searchingfor" value="" /> ...
<7> er--- badly explained, I'll try again... their script will post to my script. My script needs to respond by visiting their website... checking fopen
<1> that's what those do
<7> ya, looks good
<5> whoa .. can anyone help me I will offer cash
<6> yeah
<6> i found it! htmlspecialchars()
<0> @php echo htmlspecialchars("<");
<8> Result: &lt;
<6> is htmlspecialchars() having security threats ?
<0> it, in fact, protects from some, like injection of html and javascript into things like msgboards
<0> whether or not the function can;t properly deal with some output, i.e. a bug in php, i dunno
<6> thanks
<7> Hrmmm when I call fopen("http://www.yahoo.com";, "r"); APache dies (illegal function call). Tried tossing in some /0's... tried different sites and even a direct IP - saw that a guy in the docs had that as a DNS issue.... any other suggestions?
<7> I noticed the fsockopen() command while crawling around in the docs... maybe this one is a bit more flexible?
<1> apache dies?
<0> Keneto: you mean the script dies? or the webserver crashes?
<7> webserver crashes
<7> well that thread.portion of it... Apache is able to stay alive and continue servicing requests
<0> @fsockopen
<8> (PHP 3, PHP 4, PHP 5)
<8> resource fsockopen ( string target [, int port [, int &errno [, string &errstr [, float timeout]]]] )
<8> Open Internet or Unix domain socket connection
<8> http://www.php.net/fsockopen
<7> I was afarid you'd say that
<0> @php php -r'$s=fsockopen("www.yahoo.com", 80); fputs($s, "GET / HTTP/1.0\r\n\r\n"); echo fgets($s, 128);'
<8> PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING
<0> whoops
<0> @php $s=fsockopen("www.yahoo.com", 80); fputs($s, "GET / HTTP/1.0\r\n\r\n"); echo fgets($s, 128);
<8> PHP Warning: fsockopen() has been disabled for security reasons
<8> Result: Warning: fputs() has been disabled for security reasons in /home/rbot/php/php-0 on line 1
<1> @headers jetty.mortbay.org
<8> response code: 200
<8> last-modified: Wed, 23 Jan 2002 01:54:48 GMT
<8> connection: close
<8> content-type: text/html
<8> date: Wed, 07 Jun 2006 03:39:20 GMT
<8> server: Jetty/5.1.10 (FreeBSD/4.10-RELEASE-p2 i386 java/1.4.2-p6
<8> content-length: 843
<8> accept-ranges: bytes
<8> Header listing complete.
<0> Jetty?
<1> yeah
<9> sup guys what command can I use to make a message goes away after a certain time?
<9> I'm just stuck
<1> Et3rN|Ty: javascript?
<9> like I have if(strlen($_POST['yourname']) < 3){$message = 'Please type your name.';}
<7> fsockopen() did the trick... no errors... just tweaking now
<0> Et3rN|Ty: define "go away"
<9> evulish_ => http://www.jttecnologix.com/ I just need to fix the pink message
<0> and define the opposite of go away
<1> what pink message?
<9> if you type where it says recomend us => Recomiendanos a pink msg will come up
<9> or if you don't type anuthing
<1> you want it to disappear?
<9> after a certain time yes cause I don't what user need to refresh the site everytime
<1> wouldn't he just resubmit the form with the field filled in or whatever?
<9> I didn't get that evulish_ ;(
<1> ..
<1> it's a form validation error, right?
<9> yes
<1> ok, so if there was a mistake, wouldn't they read the error and resubmit the form correctly?
<9> yes but if you resumit the form correctly I add a message that says that your email was send and the message keeps there
<1> ok, so use javascript
<1> php can't do it
<9> k what command I can use then? like break; I don't know. So I can read about it
<1> setTimeout
<1> and they're functions, not commands
<1> well, methods in javascript
<9> thats right
<9> k evulish_ thanks for your time


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #php
or
Go to some related logs:

#allnitecafe
#worldchat
#linux
pheking
#allnitecafe
#india
richard marx romanian chat
#india
bluewaterventureskw
sexxxxxx



Home  |  disclaimer  |  contact  |  submit quotes