php-windows Digest 27 Jul 2002 07:25:00 -0000 Issue 1260

Topics (messages 14979 through 14987):

Re: pretty simple-but i can't figure it out
        14979 by: Tim Blackwell
        14980 by: Dash McElroy
        14982 by: Tim Blackwell

Access & PHP on Windows 2000
        14981 by: Tobe Johnson
        14986 by: George Nicolae

Re: PostgreSQL
        14983 by: leo g. divinagracia iii

Form Data not posting
        14984 by: Dean Hayes

Re: Converting to a sting
        14985 by: leo g. divinagracia iii

display stuck .... ! ! ! !
        14987 by: toby z

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
not sure i know what you mean, there isn't a space there?


"Scott Carr" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> There is no space between the $i.php' onClick="
> --
> Scott Carr
> OpenOffice.org
> Documentation Maintainer
> http://documentation.openoffice.org/
>
>
> Quoting Tim Blackwell <[EMAIL PROTECTED]>:
>
> > thanks a lot, that helped.  now, why doesn't the link below work
> >
> >
> > echo "<a href
='/myweb2/more$i.php'onClick="window.open('/myweb2/more$i.php'
> > ,'popup','width=645,height=450,resizable=1,scrollbars=no');return
false;">
> > more...</a>";
> >
> >
> >
> >
> > "Peter" <[EMAIL PROTECTED]> wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > You could also make a function to simplify things if you have lots of
> > links
> > >
> > > function dolink($href, $text) {
> > > $text = "<A HREF=\"$href\">$text</A>";
> > > return $text;
> > > }
> > >
> > > then calling
> > > echo dolink("page1.php","Link to page 1");
> > > would output a link to page1.php with the text Link to page 1
> > >
> > >
> > >
> > > "Tim Blackwell" <[EMAIL PROTECTED]> wrote in message
> > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > > how do you make a link using PHP it's very simple in html and
> > javascript,
> > > > but i can't seem to figure out how to make a simple link?
> > > >
> > > > i'm making a news site and would like to have enormous articles have
a
> > > nice
> > > > little more...... link at the bottom of the first portion of the
> > article.
> > > >
> > > > any help would be much appreciated,
> > > >
> > > > thanks,
> > > >
> > > > tim
> > > >
> > > >
> > >
> > >
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>
>
> -------------------------------------------------
> This mail sent through IMP: http://horde.org/imp/


--- End Message ---
--- Begin Message ---
It looks as if there are some double quotes that need to be escaped. I.e.:

echo "<a
href='/myweb2/more$i.php'onClick=\"window.open('/myweb2/more$i.php','popup',
'width=645,height=450,resizable=1,scrollbars=no');return false;\"
more...</a>";

?

-Dash

-----Original Message-----
From: Tim Blackwell [mailto:[EMAIL PROTECTED]] 
Sent: Friday, July 26, 2002 1:06 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Re: pretty simple-but i can't figure it out


not sure i know what you mean, there isn't a space there?


"Scott Carr" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> There is no space between the $i.php' onClick="
> --
> Scott Carr
> OpenOffice.org
> Documentation Maintainer
> http://documentation.openoffice.org/
>
>
> Quoting Tim Blackwell <[EMAIL PROTECTED]>:
>
> > thanks a lot, that helped.  now, why doesn't the link below work
> >
> >
> > echo "<a href
='/myweb2/more$i.php'onClick="window.open('/myweb2/more$i.php'
> > ,'popup','width=645,height=450,resizable=1,scrollbars=no');return
false;">
> > more...</a>";
> >
> >
> >
> >
> > "Peter" <[EMAIL PROTECTED]> wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > You could also make a function to simplify things if you have lots of
> > links
> > >
> > > function dolink($href, $text) {
> > > $text = "<A HREF=\"$href\">$text</A>";
> > > return $text;
> > > }
> > >
> > > then calling
> > > echo dolink("page1.php","Link to page 1");
> > > would output a link to page1.php with the text Link to page 1
> > >
> > >
> > >
> > > "Tim Blackwell" <[EMAIL PROTECTED]> wrote in message
> > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > > how do you make a link using PHP it's very simple in html and
> > javascript,
> > > > but i can't seem to figure out how to make a simple link?
> > > >
> > > > i'm making a news site and would like to have enormous articles have
a
> > > nice
> > > > little more...... link at the bottom of the first portion of the
> > article.
> > > >
> > > > any help would be much appreciated,
> > > >
> > > > thanks,
> > > >
> > > > tim
> > > >
> > > >
> > >
> > >
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>
>
> -------------------------------------------------
> This mail sent through IMP: http://horde.org/imp/



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
don't worry, i know eveyone was rushing to figure this one out, but i've got
it taken care of

in case you were wondering.......it was a quote issue.

here is the correct line

echo "<a href='/myweb2/more$i.php'
onClick=\"window.open('/myweb2/more$i.php','popup','width=500,height=300,res
izable=1,scrollbars=yes');return false;\">...more</a>";


"Tim Blackwell" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> not sure i know what you mean, there isn't a space there?
>
>
> "Scott Carr" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]...
> > There is no space between the $i.php' onClick="
> > --
> > Scott Carr
> > OpenOffice.org
> > Documentation Maintainer
> > http://documentation.openoffice.org/
> >
> >
> > Quoting Tim Blackwell <[EMAIL PROTECTED]>:
> >
> > > thanks a lot, that helped.  now, why doesn't the link below work
> > >
> > >
> > > echo "<a href
> ='/myweb2/more$i.php'onClick="window.open('/myweb2/more$i.php'
> > > ,'popup','width=645,height=450,resizable=1,scrollbars=no');return
> false;">
> > > more...</a>";
> > >
> > >
> > >
> > >
> > > "Peter" <[EMAIL PROTECTED]> wrote in message
> > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > > You could also make a function to simplify things if you have lots
of
> > > links
> > > >
> > > > function dolink($href, $text) {
> > > > $text = "<A HREF=\"$href\">$text</A>";
> > > > return $text;
> > > > }
> > > >
> > > > then calling
> > > > echo dolink("page1.php","Link to page 1");
> > > > would output a link to page1.php with the text Link to page 1
> > > >
> > > >
> > > >
> > > > "Tim Blackwell" <[EMAIL PROTECTED]> wrote in message
> > > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > > > how do you make a link using PHP it's very simple in html and
> > > javascript,
> > > > > but i can't seem to figure out how to make a simple link?
> > > > >
> > > > > i'm making a news site and would like to have enormous articles
have
> a
> > > > nice
> > > > > little more...... link at the bottom of the first portion of the
> > > article.
> > > > >
> > > > > any help would be much appreciated,
> > > > >
> > > > > thanks,
> > > > >
> > > > > tim
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> > >
> > > --
> > > PHP Windows Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> > >
> >
> >
> > -------------------------------------------------
> > This mail sent through IMP: http://horde.org/imp/
>
>


--- End Message ---
--- Begin Message ---
I apologise if this is not appropriate for this list, but I need someone who could act 
in a consulting role to get a small Access db set up and going.  The system is running 
Windows2000, IIS5, Microsoft Access2000, PHP4.x.

Tobe Johnson
Johnson & Associates, Inc.
406-458-9173
--- End Message ---
--- Begin Message ---
take a look at http://www.phpbuilder.com/columns/siddarth20000228.php3

--


Best regards,
George Nicolae
IT Manager
___________________
PaginiWeb.com  - Professional Web Design
www.PaginiWeb.com


"Tobe Johnson" <[EMAIL PROTECTED]> wrote in message
028201c234e1$b5e588c0$1900a8c0@tobe">news:028201c234e1$b5e588c0$1900a8c0@tobe...
I apologise if this is not appropriate for this list, but I need someone who
could act in a consulting role to get a small Access db set up and going.
The system is running Windows2000, IIS5, Microsoft Access2000, PHP4.x.

Tobe Johnson
Johnson & Associates, Inc.
406-458-9173



--- End Message ---
--- Begin Message ---
edit your PHP.INI file and uncomment out the

php_pgsql.dll

line at the section for dynamic extensions...

while i'm at the subject of editing PHP.INI, there's a small PHP config
utility from a cool guy who writes a few small and FREE utilties.  the
site is

http://www.analogx.com

the link for the PHPConfig is

http://www.analogx.com/contents/download/network.htm

scrolll down to the SERVER RELATED section...

Hadi wrote:

> How can i enable PostgreSQL module?
> I have installed PHP 4 on IIS5, Windows 2000
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

--
Leo G. Divinagracia III
[EMAIL PROTECTED]


--- End Message ---
--- Begin Message ---

Hey i have installed php 4.2.1 and my form data use to post to the MySQL 
database and also to the plain txt files. When i upgraded my Internet 
Explorer to IE6 i was unable to post data from froms. I tried goin back to 
IE5.5 but that did not seem to work. I have also tried to reinstall php and 
also apache but nothing seems to work. Does anyone know what i can do to get 
the form data to post

Thanks

Dean "The Insane Guy" Hayes



I know i am Insane why do you think my name is The Insane Guy

blah blah blah more bull crap stuff insert it here -->  <--


_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com

--- End Message ---
--- Begin Message ---
i was gonna say SREIALIZE it, then i ran into:

http://www.php.net/manual/en/function.sprintf.php


"R.S. Herhuth" wrote:

> In order to please MSSQL I have a situation where I must turn a result
> into string before SQL will accept it.  Is there a command I can use to
> convert a numeric into a string that SQL will accept?
>
>

--
Leo G. Divinagracia III
[EMAIL PROTECTED]


--- End Message ---
--- Begin Message ---


hi guyx

i ve a lil problem

i run this query n get a result set 



$query = "SELECT lang_id,strng_id, strng FROM  strngx
where pg_id = 6 and lang_id = '$lang_id '";
$query_result_handle = mysql_query ($query)
        or die ('qry failed !  DA tbl must xixt in DA db
specifyd bov ....');

exe and store it in $row


for( $v=1; $v < mysql_num_rows($query_result_handle);
$v++)
  {
     $row = mysql_fetch_row($query_result_handle);
     $str[ $row[0] ][ $row[1] ] = $row; 
   }


alls well

but

i want to get a single record displayed

when i do


echo($row[2]."<br>");




i get all the records in $row[2]
but i want jst 1 

what should i do ?????

how should i go about it .... ?????

plx plx help

m stuck ...
:(



thnx a million ..... billion 


stuck ....

toby ....


--- End Message ---

Reply via email to