php-general Digest 18 Feb 2007 14:35:54 -0000 Issue 4632

2007-02-18 Thread php-general-digest-help
--- ---BeginMessage--- Need some help on getting some database result in a css popup like yahoo. The requirement is to open a div or a window similar to yahoo one. As you can see from the link below. http://news.yahoo.com/s/ap/20070218/ap_on_go_co/us_iraq On this if you click on the Images next

php-general Digest 19 Feb 2007 03:19:05 -0000 Issue 4633

2007-02-18 Thread php-general-digest-help
2007 01:23:26 -0800 (PST) Chris Carter [EMAIL PROTECTED] escribió: Need some help on getting some database result in a css popup like yahoo. The requirement is to open a div or a window similar to yahoo one. As you can see from the link below. http://news.yahoo.com/s/ap/20070218/ap_on_go_co

[PHP] Re: LOL, preg_match still not working.

2007-02-18 Thread Beauford
Mails been down since this morning (sorry, that's yesterday morning). Anyway, not sure if this went through, so here it is again. -- The bottom line is I want to allow everything in the expression and nothing else. The new line does not seem to be an issue - I can put as many returns as I

[PHP] needed Yahoo like window for db query.

2007-02-18 Thread Chris Carter
Need some help on getting some database result in a css popup like yahoo. The requirement is to open a div or a window similar to yahoo one. As you can see from the link below. http://news.yahoo.com/s/ap/20070218/ap_on_go_co/us_iraq On this if you click on the Images next to the links Iraq

Re: [PHP] $_FILES path on client's machine?

2007-02-18 Thread Sancar Saran
Hi, No solution from php... If you find you way to read form file tag path via js you ma send this value to server and may store sql then send back. Aslo I'm not sure to sending back those stored info to client solve the problem. If you really want to do this. You have to write your own

[PHP] Re: PHP Startup: Unable to load dynamic library

2007-02-18 Thread Haydar TUNA
Hi, I think , you work on a Linux machine and you install together PHP and Apache in the source code. Can I give your ./configure paratemether. I think there is a problem in the configuration parameters. Noah [EMAIL PROTECTED], haber iletisinde sunlari yazdi:[EMAIL PROTECTED] Hi, I

[PHP] Re: reverse http authentication

2007-02-18 Thread Haydar TUNA
You can use this programming part in here. If you have any question, you can send mail ?php if ( ( !isset( $PHP_AUTH_USER )) || (!isset($PHP_AUTH_PW)) || ( verify($PHP_AUTH_USER,$PHP_AUTH_PW) == false) ) { header( 'WWW-Authenticate: Basic realm=Header of the password box' ); header( 'HTTP/1.0

[PHP] EMAIL LIST AND PASSWORD

2007-02-18 Thread hackcrack
Hello, Any Body with Email List and Password Should Kindly send it to my email [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/EMAIL-LIST-AND-PASSWORD-tf3248449.html#a9030106 Sent from the PHP - General mailing list archive at Nabble.com. -- PHP General Mailing List

[PHP] Re: Help with sessions on Log in and Log out

2007-02-18 Thread Haydar TUNA
Hi, Firstly , you should unset all of session variables an then you should destroy the session variables. After this process, redirect the page to HTML file (for example quit.html). By the way , you should use the GET variables or POST variables to quit. if (isset($_GET['quit'])) {

[PHP] Re: LOL, preg_match still not working.

2007-02-18 Thread Al
If you want help, you must provide some example text strings that are to be matched. You keep posting your pattern and that's the problem. Beauford wrote: Mails been down since this morning (sorry, that's yesterday morning). Anyway, not sure if this went through, so here it is again.

Re: [PHP] reverse http authentication

2007-02-18 Thread Travis Doherty
Chris W wrote: I want to read a page that is protected with http authentication. How do I pass the user name and password to be authenticated with my php code? Have you tried to just put the username and password in the URL? I'm not sure if this works, its so simple its worth a try.

[PHP] Another hand wringer

2007-02-18 Thread jekillen
Hello; I am having trouble with a loop in scripts run under php v5.1.2. I have produced a form in a web page that has a variable number of text fields. These fields represent the result of opening a file and populating the fields with the corresponding value data found in the file. The field

Re: [PHP] Another hand wringer

2007-02-18 Thread Matt Zandstra
Looks to me as if you're treating $flen as an array in one place and as a value in another: String here: $flen = $_POST['flen'];// length of text field group, shows to be the Array here: for($i = 0; $i count($flen); $i++) Remove the count() and you'll probably get what you

[PHP] re another hand wringer

2007-02-18 Thread jekillen
Sorry all; regarding recent post list troubles with code below in the loop I was using count($value) instead of just $value for($i = 0; $i count($flen); $i++) // should be $flen instead of count($flen) { array_push($edata, $_POST[a_$z]); // this loop terminates

Re: [PHP] needed Yahoo like window for db query.

2007-02-18 Thread Miguel J. Jiménez
/20070218/ap_on_go_co/us_iraq On this if you click on the Images next to the links Iraq, President Bush, Hillary Rodham Clinton, Pentagon, etc. This opens a div within the page with the search result. They are using some JavaScript to achieve this. Is there anyone with idea of where to find

Re: [PHP] $_FILES path on client's machine?

2007-02-18 Thread Chris
Skip Evans wrote: Hey all, I get the feeling from not finding an argument for the path on the client's machine for the complete path of a file in $_FILES that it might not be available for security reasons? The reason I am interested in this is to restore the value of a input type='file'

[PHP] What is $this-

2007-02-18 Thread Dick Richard
Can someone explain what $this- does and means. For example what does this bit ot php code mean? $this-SetFont('Arial','B',15); Thanks [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What is $this-

2007-02-18 Thread Leonard Burton
HI, $this-SetFont('Arial','B',15); what you include is a snippet from a class. Here is a brief into to how a class works, sort of like a function. The $this refers to the class from inside of the class. ?php class write{ var $message; function set($message){

Re: [PHP] What is $this-

2007-02-18 Thread André Medeiros
Actually, $this-$message would be wrong, but the concept is right. On 2/19/07, Leonard Burton [EMAIL PROTECTED] wrote: HI, $this-SetFont('Arial','B',15); what you include is a snippet from a class. Here is a brief into to how a class works, sort of like a function. The $this refers to the

Re: [PHP] needed Yahoo like window for db query.

2007-02-18 Thread John Comerford
from the link below. http://news.yahoo.com/s/ap/20070218/ap_on_go_co/us_iraq On this if you click on the Images next to the links Iraq, President Bush, Hillary Rodham Clinton, Pentagon, etc. This opens a div within the page with the search result. They are using some JavaScript to achieve

Re: [PHP] Unable to compile php 5.2.1 on Intel Macbook

2007-02-18 Thread Chris
Tim Visher wrote: Hello all, I can't compile php 5.2.1. I don't exactly know where the error starts or begins so I'm just going to post the whole thing: Looks like something to do with ssl. What's your configure command? -- Postgresql php tutorials http://www.designmagick.com/ -- PHP

Re: [PHP] easynav breaks my page

2007-02-18 Thread Chris
Ross wrote: I am using the easynav class. I include it like this What's that? Maybe ask whoever makes easynav? -- Postgresql php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Securing user table with sha function

2007-02-18 Thread Haydar Tuna
Hello, 1) If you protect your site from SQL Injection, you must replace all quote and blank character in your form data. (with string functions) 2) After this step, you can compare your password (with SHA1) and database password field (with SHA1). 3) if comparing passwords are true, then you