[PHP-DB] Re: php and WAP?

2001-09-19 Thread Andrius Jakutis

Maybe I need on-line gateway service that converts WML written pages for
delivery to wireless devices???

Where could I get it for free?

Thanks



-- 
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] php and WAP?

2001-09-19 Thread Andrius Jakutis

Hello,

I have web site, based on PHP+MYSQL. What is the best (ofcouse and
profesional) way to have the same site on WAP also?

1. Do I need to rewrite all PHP files in to wap language?
2. DO I have to do this manualy, or there is some utility, which converts
automatically (profesionally)? (give a link plz)
3. Does WAP understand connecting to database, and then listing entries,
like PHP? (do you know good tutorial?)

Thanks.


Andrius



-- 
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] php + MYSQL based banner exchange system

2001-09-18 Thread Andrius Jakutis

Hello all,

I need your recomendations, where to download from a good (profesional -
many options) banner exchange system (subj.).

I need it for free (I understand that not everything what is free is also
good :) ).

Any ideas?

Sorry, if my message is offtopic.

Sincerely,
Andrius



-- 
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] mail ()

2001-09-16 Thread Andrius Jakutis

Hello,

How to make field required?

Using mail ()


Thanks.





-- 
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] order by question

2001-09-11 Thread Andrius Jakutis

Ok, here is the question:

I write to order by date "Order by date".

So, it output's something like this:

2001 08 01
2001 08 02
2001 08 03

What if I want to order by date, but not from the older to newest, but from
newest to older ?

The same is with numbers - priority

I use order by priority.

It lists: 1
2
3
4

But how to list like this:
4
3
2
1


Thanks






-- 
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] best solution with db..?

2001-09-05 Thread Andrius Jakutis

Hello,

I am newbie, so, please give me advice.

Ok, I have PHP webpage, where I give information from MYSQL database (Info
in english). I'd like to have website in german. Should I recreate (double)
tables (those, where is text which is needed to be translated), or there is
some clever solution?

I have no idea.

Thanks



-- 
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] 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]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP-DB] resizing image with php - what is the quality?

2001-08-31 Thread Andrius Jakutis

Hello,

Again question about resizing image with PHP. What is the quality of the
image after this process?

I am about standart GIF or JPG image.

Thanks



-- 
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] resizing image in php

2001-08-31 Thread Andrius Jakutis

Hello all,

I need to make some program with php, that I would resize image.

Any examples?

Thanks!



-- 
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] example of making "Next 10 entries" - "previous .."

2001-08-29 Thread Andrius Jakutis

Hello,


I need example of making simple thing: to list only 10 entries per page, and
next 10 is shown after "next page" button is clicked.

Thanks



-- 
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] go to another URL

2001-08-26 Thread Andrius Jakutis

Hello,

What is the command in PHP coding, to order go to another URL?

Thanks



-- 
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]




Re: [PHP-DB] listing

2001-08-23 Thread Andrius Jakutis

Okay, but what if I want to use data from two tables not only from
"companies" ?





> Assuming you've opened a MySQL connection and stored connection in
$connect:
>
> $query="SELECT * FROM mytable";
> $result = mysql_query($query,$connect) or die("ERROR");
>
> print "";
> while( $row = mysql_fetch($result)
> {
> print
>
"".$row['field1']."".$row['field2']."".$row['field3']."
> ";
> }
> print "";
> mysql_free_result($result);
>
> The above will create a table and output one table row per row in
database.
> Change field1, fiedl2, field3 to the names of fields in the database.
>
> Richard Emery
> Excel Communications, Inc.
> IT Sr. Project Manager
> (972) 478-3398
> (972) 944-0542 (pager)
>
> There is no "trying"...
> There is only "Do" or "Not Do"
>
>
>
> -Original Message-
> From: Andrius Jakutis [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 23, 2001 11:22 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP-DB] listing
>
>
> This gives 25 the same entries. I need to list all entries from the table,
> but with loop.
>
> More solutions?
>
>
> "Chris Hobbs" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > Something like:
> >
> > 
> > 
> > 
> > 
> >  > // php code to output your entry information
> > ?>
> > 
> > 
> > 
> >
> > 
> >
> > Andrius Jakutis wrote:
> >
> > > Hello again,
> > >
> > > Is there oportunity to write this:
> > >
> > > 
> > > HTML  php coding.+ MYSQL -  1 entries information
> > > 
> > >
> > > Something like that:
> > >
> > > 
> > > 
> > > 
> > > 
> > > first entry information from table "companies" (name, telephone...)
> > > 
> > > 
> > > 
> > > 
> > >
> > >
> > >
> > > THanks.
> > >
> > >
> > > --
> > > Su pagarba,
> > >
> > > Andrius Jakutis
> > > InternetMedia
> > > http://www.internetmedia.lt
> > > GSM: 370 82 31332
> > >
> > >
> > >
> > >
> > >
> >
> >
> > --
> > Chris Hobbs   Silver Valley Unified School District
> > Head geek:  Technology Services Coordinator
> > webmaster:   http://www.silvervalley.k12.ca.us/~chobbs/
> > postmaster:   [EMAIL PROTECTED]
> >
>
>
>
> --
> 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 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]




Re: [PHP-DB] listing

2001-08-23 Thread Andrius Jakutis

This gives 25 the same entries. I need to list all entries from the table,
but with loop.

More solutions?


"Chris Hobbs" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Something like:
>
> 
> 
> 
> 
>  // php code to output your entry information
> ?>
> 
> 
> 
>
> 
>
> Andrius Jakutis wrote:
>
> > Hello again,
> >
> > Is there oportunity to write this:
> >
> > 
> > HTML  php coding.+ MYSQL -  1 entries information
> > 
> >
> > Something like that:
> >
> > 
> > 
> > 
> > 
> > first entry information from table "companies" (name, telephone...)
> > 
> > 
> > 
> > 
> >
> >
> >
> > THanks.
> >
> >
> > --
> > Su pagarba,
> >
> > Andrius Jakutis
> > InternetMedia
> > http://www.internetmedia.lt
> > GSM: 370 82 31332
> >
> >
> >
> >
> >
>
>
> --
> Chris Hobbs   Silver Valley Unified School District
> Head geek:  Technology Services Coordinator
> webmaster:   http://www.silvervalley.k12.ca.us/~chobbs/
> postmaster:   [EMAIL PROTECTED]
>



-- 
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] listing

2001-08-23 Thread Andrius Jakutis

Hello again,

Is there oportunity to write this:


HTML  php coding.+ MYSQL -  1 entries information


Something like that:





first entry information from table "companies" (name, telephone...)







THanks.


--
Su pagarba,

Andrius Jakutis
InternetMedia
http://www.internetmedia.lt
GSM: 370 82 31332




-- 
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] can you help to beginner?

2001-08-23 Thread Andrius Jakutis

Hello All,

Maybe you can help me, becouse I was searching for various documentations,
and it seems too difucult for me, becouse everything is so crowded.

I need to built small html file, where I could get listed companies.

I have two tables in my MYSQL database, companies and services.
Company table:
companyid and companyname

services table:
id companyid services.

So I need simply to get listings like this:

Company name
services

Company2 name
Services

etc...

Can you help me? I know that for this example its better to use one table,
not two, but I am just learning..

Thanks



-- 
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] list entries alphabetically

2001-08-15 Thread Andrius Jakutis

Hello again,

How to list entries alphabeticall way?

Using MYSQL.

Thanks



[PHP-DB] show only some entries

2001-08-15 Thread Andrius Jakutis

Hello,

I am just starting learning pHp, so, sorry for stupid questions.

1. How to make, that I could get output of only those entries, which name(field) is 
"John".
2. How to make, that only 10 entries with John would be shown in the same page, and 
others would be on "next page" and so on.

Thank you.

BTW, where could I read about simple php programming things?