[PHP-DB] html generated web pages

2001-09-02 Thread RSalomo
hello, how can i make html generated web pages, and control images and format for that html page? (for example like devshed, they have link like this: .../.../some_folder/page1.html). where can i learn them? i.m a newbie here. is this has something to do with phplib7.2? thanks in advance. rudy

Re: [PHP-DB] Searching sql database using php

2001-09-02 Thread Devon
I have a database of only about 25 fields written in MYSQL for our internal client database, I need to be able to search each off these fields using php, can some one help or point me in the correct direction? "Doug Semig" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTE

Re: [PHP-DB] Searching sql database using php

2001-09-02 Thread Doug Semig
Yes. If you have a specific question, please post it and I'm sure folks will be willing to try to help you out. Doug At 12:50 PM 9/3/01 +1000, Devon wrote: >As per topic anyone know how to do it? > >Cheers --Doug's Signature File ~ ~ ~ I'm proud to work

[PHP-DB] Searching sql database using php

2001-09-02 Thread Devon
As per topic anyone know how to do it? Cheers -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DB] Search Results - Next 10 records

2001-09-02 Thread Dennis
Trying to figure out how to limit search results to say 10 records and produce a button to show the next 10. Do you use PHP to do the logic, or should I make another table column for a temporary count? This is what I'm up to so far... Thanks in advance function show_all($table, $keyword=0)/

[PHP-DB] Re: Really weird problem: cross-server databasing *g*

2001-09-02 Thread Manuel Lemos
Hello, Markus Mayer wrote: > Let's say you have two servers, on the first one ("A") you have your website > containig all those nice php scripts and co but only a crazy small database > (2 megs), on the second one ("B") you have a really big database available > but the problem, that the provider

[PHP-DB] simple form submitting script

2001-09-02 Thread Andrius Jakutis
Hello, Can somebody send me simple form submitting (sending to email) php script? It would be nice with some example, how to create entered information checking, but basic script is good too. Thanks. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DB] Re: Special Character on INSERT statement

2001-09-02 Thread Jorge Giménez Mayorgas
Hi again It is solved I used $value="'".urlencode($value)."'" And urldecode for showing the data. Thanks everybody for the help. Later, Jorge Giménez - Original Message - From: Jorge Giménez Mayorgas <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 29, 20

Re: [PHP-DB] PHP and ms Access

2001-09-02 Thread olinux o
www.phpbuilder.com has an article on this olinux --- user <[EMAIL PROTECTED]> wrote: > Hello, > > I am builing a microsoft access database. > > Now wants the compagny I created it for me to use it > to make dynamic > webpages. The problem is that I am new at this. > > Can somebody please expl

[PHP-DB] Re: Database Function

2001-09-02 Thread Alfredo Yong
look here: http://www.bitmechanic.com/mail-archives/mysql/Jun1998/0387.html An extract: Write this: select * from table_name limit 100 select * from table_name limit 100, 100 select * from table_name limit 200, ( what number you want).. On Mon, 15 Jun 1998, Joe Walnes wrote:

[PHP-DB] Re: Database Function

2001-09-02 Thread Hugh Bothwell
"Georgie" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a simple php script that searchs a MySQL database and returns results > that I made myself and I'm trying to implement code that splits the results > into x amount of pages, buts it really tricky.

[PHP-DB] Database Function

2001-09-02 Thread Georgie
I have a simple php script that searchs a MySQL database and returns results that I made myself and I'm trying to implement code that splits the results into x amount of pages, buts it really tricky. Can anyone give me a link to some code or even better, a search database script that I could adap

[PHP-DB] Re: Really weird problem: cross-server databasing *g*

2001-09-02 Thread Hugh Bothwell
"Markus Mayer" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Forgot to mention ... the only way to access the database on B is to connect > to "localhost" there. I would write a script on B that accepts parameters and returns the results in easy-to-parse for

[PHP-DB] Re: A timed refresh ?

2001-09-02 Thread Hugh Bothwell
"Dave Carrera" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have an array of which shows an image in a place on my page which shows > the next on the list when the page refreshes, this works fine. > > What I want to do is have the image refresh on a 5 seco

[PHP-DB] Re: MySql database data has html code in it

2001-09-02 Thread John Lim
Hi Try echo htmlspecialchars($code) to display the html. "Crosswalkcentral" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello > Another question for the pros. > > I have a Mysql database which contains a table labled html > in this table I have some short

[PHP-DB] Re: How can you hide database login passwd in your script?

2001-09-02 Thread John Lim
Hello Michael That's why we use the Zend encoder for additional security. If that is out of your budget, I suggest compiling the password into an extension. Remember to unset all variables which contain passwords after they are used, otherwise a print_r($GLOBALS); could reveal everything. Regar