php-windows Digest 18 May 2002 04:32:34 -0000 Issue 1149

Topics (messages 13832 through 13851):

EXEC and Windows
        13832 by: BERNARD Florent
        13834 by: Nicole Amashta

Re: Displaying checkbox values selected
        13833 by: Aziz Durmaz
        13835 by: Nicole Amashta
        13836 by: C Sims
        13837 by: Hugh Bothwell

Re: automation
        13838 by: Scott Hurring

Searvh engine...
        13839 by: Mircea Goia
        13840 by: Scott Hurring

Can't figure out how to fix this code...please help
        13841 by: R.S. Herhuth
        13842 by: Scott Hurring
        13843 by: Alan Brown

Re: ASP and PHP
        13844 by: Benjamin Walling
        13845 by: Scott Hurring
        13846 by: Olivier Hubert
        13848 by: Steve Magruder, D2 Director

install path errors
        13847 by: George Kesarios

php_mcrypt.dll
        13849 by: Michael Reynolds

3 PHP Application Developers Needed - LA Based
        13850 by: Demi Vitalis

Extra space added on import
        13851 by: Jerry

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

I try to use EXEC function to execute a command line. The command line is
correct but the exec doesn't return anything.

Have you any idea about it ?

I give you my source :

exec('"c:\progra~1\swish-e\swish-e.exe" -w "test" -f
C:/Progra~1/EasyPHP/www/atelier_dev/data/index.swish-e',$out);


--- End Message ---
--- Begin Message ---
Hi,

'exec' will returm the last line of any output.

The syntax is:

<snip src="http://www.php.net/manual/en/function.exec.php";>

string exec ( string command [, string array [, int return_var]])

</snip>

If you include the second parameter, the contents of the output will be 
placed in the array, each line being an element in the array.

<?php
$lastline = exec( "$command", $resultsArray );

## print out the results, if any.
for($i=0; $i < sizeof($resultsArray); $i++)
{
        ## you have to echo out the
        ## results from each element
        ## of the array.
        echo $resultsArray[$i] . '<br>';
}
?>

HTH!
Nicole Amashta
www.aeontrek.com

Bernard Florent wrote:
> Hello
> 
> I try to use EXEC function to execute a command line. The command line is
> correct but the exec doesn't return anything.
> 
> Have you any idea about it ?
> 
> I give you my source :
> 
> exec('"c:\progra~1\swish-e\swish-e.exe" -w "test" -f
> C:/Progra~1/EasyPHP/www/atelier_dev/data/index.swish-e',$out);
> 
> 

--- End Message ---
--- Begin Message ---
<form action="<? echo $PHP_SELF; ?>" method="post">
<input type="checkbox" name="artist[]" value="Bon Jovi">Bon Jovi
<input type="checkbox" name="artist[]" value="N'Sync">N'Sync
<input type="checkbox" name="artist[]" value="Boyzone">Boyzone
<input type="checkbox" name="artist[]" value="Britney Spears">Britney Spears
<br>
<input type="submit" name="submit" value="Select">
</form>

try this.....
-----Original Message-----
From: C Sims [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 17, 2002 6:01 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Displaying checkbox values selected


Hi all,
would appreciate any help with this (newbie) question. All im trying to do
is to echo on screen the checkbox values selected by the user. Problem is
when submit is pressed, the selected artists dont appear, it just goes back
to the original screen (with empty checkboxes). Below is the code which ive
copied from another site which supposedly should work. Thanks in advance for
help.

in file jukebox.php3

<?
// check for $submit
if (!isset($submit))
{
// and display form
?>

<form action="jukebox.php3" method="post">
<input type="checkbox" name="artist[]" value="Bon Jovi">Bon Jovi
<input type="checkbox" name="artist[]" value="N'Sync">N'Sync
<input type="checkbox" name="artist[]" value="Boyzone">Boyzone
<input type="checkbox" name="artist[]" value="Britney Spears">Britney Spears
<br>
<input type="submit" name="submit" value="Select">
</form>

<?
}
// or display the selected artists
else
{
?>

<b>And here are your selections:</b>
<br>

<?

// use a "for" loop to read and display array elements
 for($count = 0; $count < sizeof($artist); $count++)
 {
   print "<i>$artist[$count]</i><br>";
 }

}
?>



--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--- End Message ---
--- Begin Message ---
Since this is dynamically generated, you should be able to determine the 
'checked' items. If the value is equal to the value of the check box, 
you need to add in 'checked' to the checkbox tab, like so:

<input type="checkbox" name="artist[]" value="Bon Jovi" checked>Bon Jovi


-nicole
www.aeontrek.com

C Sims wrote:
> Hi all,
> would appreciate any help with this (newbie) question. All im trying to do
> is to echo on screen the checkbox values selected by the user. Problem is
> when submit is pressed, the selected artists dont appear, it just goes back
> to the original screen (with empty checkboxes). Below is the code which ive
> copied from another site which supposedly should work. Thanks in advance for
> help.
> 
> in file jukebox.php3
> 
> <?
> // check for $submit
> if (!isset($submit))
> {
> // and display form
> ?>
> 
> <form action="jukebox.php3" method="post">
> <input type="checkbox" name="artist[]" value="Bon Jovi">Bon Jovi
> <input type="checkbox" name="artist[]" value="N'Sync">N'Sync
> <input type="checkbox" name="artist[]" value="Boyzone">Boyzone
> <input type="checkbox" name="artist[]" value="Britney Spears">Britney Spears
> <br>
> <input type="submit" name="submit" value="Select">
> </form>
> 
> <?
> }
> // or display the selected artists
> else
> {
> ?>
> 
> <b>And here are your selections:</b>
> <br>
> 
> <?
> 
> // use a "for" loop to read and display array elements
>  for($count = 0; $count < sizeof($artist); $count++)
>  {
>    print "<i>$artist[$count]</i><br>";
>  }
> 
> }
> ?>
> 
> 

--- End Message ---
--- Begin Message ---
thanks for replies. got it to work. i tried Aziz's solution with $PHP_SELF
but didnt work. this though led me to read about environment variables, and
to cut long story short i changed
register_globals = off to "on" in php.ini file and it worked.

cheers





"Nicole Amashta" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Since this is dynamically generated, you should be able to determine the
> 'checked' items. If the value is equal to the value of the check box,
> you need to add in 'checked' to the checkbox tab, like so:
>
> <input type="checkbox" name="artist[]" value="Bon Jovi" checked>Bon Jovi
>
>
> -nicole
> www.aeontrek.com
>
> C Sims wrote:
> > Hi all,
> > would appreciate any help with this (newbie) question. All im trying to
do
> > is to echo on screen the checkbox values selected by the user. Problem
is
> > when submit is pressed, the selected artists dont appear, it just goes
back
> > to the original screen (with empty checkboxes). Below is the code which
ive
> > copied from another site which supposedly should work. Thanks in advance
for
> > help.
> >
> > in file jukebox.php3
> >
> > <?
> > // check for $submit
> > if (!isset($submit))
> > {
> > // and display form
> > ?>
> >
> > <form action="jukebox.php3" method="post">
> > <input type="checkbox" name="artist[]" value="Bon Jovi">Bon Jovi
> > <input type="checkbox" name="artist[]" value="N'Sync">N'Sync
> > <input type="checkbox" name="artist[]" value="Boyzone">Boyzone
> > <input type="checkbox" name="artist[]" value="Britney Spears">Britney
Spears
> > <br>
> > <input type="submit" name="submit" value="Select">
> > </form>
> >
> > <?
> > }
> > // or display the selected artists
> > else
> > {
> > ?>
> >
> > <b>And here are your selections:</b>
> > <br>
> >
> > <?
> >
> > // use a "for" loop to read and display array elements
> >  for($count = 0; $count < sizeof($artist); $count++)
> >  {
> >    print "<i>$artist[$count]</i><br>";
> >  }
> >
> > }
> > ?>
> >
> >
>


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

"C Sims" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi all,
> would appreciate any help with this (newbie) question. All im trying to do
> is to echo on screen the checkbox values selected by the user. Problem is
> when submit is pressed, the selected artists dont appear, it just goes
back
> to the original screen (with empty checkboxes).


<?php

// ideally, you would read these values from a database
$artists = array("Bon Jovi", "N'Sync", "Boyzone", "Britney Spears");


echo "\n<form action='$PHP_SELF' method='post'>";

foreach($artists as $a)
    echo "\n\t<input type='checkbox' name='artist[]' value='$a'"
        .(in_array($a, $artist) ? " checked" : "")
        .">$a</input>";

echo "<br />"
    ."\n\t<input type='submit' name='submit' value='Select'>"
    ."\n</form>";


if(isset($submit)) {
    echo "<b>And here are your selections:</b><br />";

    foreach($artist as $a)
        echo "<i>$a</i><br />";
}

?>


--- End Message ---
--- Begin Message ---
> -----Original Message-----
> From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]]
> Subject: RE: [PHP-WIN] automation
> 
> Only one problem: This is the PHP Win32 list. ;) :)
> 
> > Cronning a script works great as well
> > (I do this at home on my linux server)
> > 
> > > You can use AT.exe or the scheduler.
> > > 

D'oh.  Sorry... i use PHP on both platforms daily, so
sometimes i forget to restrict suggestions to win-only
on this list :)

---
Scott Hurring
Systems Programmer
EAC Corporation
[EMAIL PROTECTED]
Voice: 201-462-2149
Fax: 201-288-1515 
--- End Message ---
--- Begin Message ---
Hi,

Is there an example of a search engine made in PHP which can search in
HTML files (a website made only with HTML)?
And, if possible, without needing a database (maybe a flat text file
database)?

If someone has a piece of code, can he send it to me?

Thanks,
Mircea

--- End Message ---
--- Begin Message ---
Well, what you ask for is pretty generic, 
so here's my 2 line search engine ;-)

// Regex to match
$data = join('', file('htmlfile'));
preg_match("/ ... /", $data, $matches);

---
Scott Hurring
Systems Programmer
EAC Corporation
[EMAIL PROTECTED]
Voice: 201-462-2149
Fax: 201-288-1515

> -----Original Message-----
> From: Mircea Goia [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 17, 2002 3:27 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Searvh engine...
> 
> 
> Hi,
> 
> Is there an example of a search engine made in PHP which can search in
> HTML files (a website made only with HTML)?
> And, if possible, without needing a database (maybe a flat text file
> database)?
> 
> If someone has a piece of code, can he send it to me?
> 
> Thanks,
> Mircea
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
--- End Message ---
--- Begin Message ---
This is my code:


<?PHP 
$objApp = new COM("Outlook.Application"); 
$myItem = $objApp->CreateItem("olMailItem"); 
$a=$myItem->Recipients->Add("[EMAIL PROTECTED]"); 
$myItem->Subject="This is a test"; 
$myItem->Body="This is a Body Section now.....!"; 
$myItem->Display(); 
$myItem->Send(); 
?> 


This is the error I'm getting...


Warning: Invoke() failed: Type mismatch. Argument: 2 in C:\Program
Files\Apache Group\Apache2\htdocs\outlook\sendMail.php on line 11

Fatal error: Call to a member function on a non-object in C:\Program
Files\Apache Group\Apache2\htdocs\outlook\sendMail.php on line 12




What did I screw up?

Thanks,
Ron
--- End Message ---
--- Begin Message ---
Well Invoke() failing can mean a few different things.
1) That you're requesting something that can't be found
2) There's a more serious error (like Outlook already
being loaded in memory a few times)

What exactly is on line 11/12 of your code?

I just finished writing PHP+COM+Excel program to automatically
populate and then print out spreadsheets, so i may be able
to help ya out... but send some more info, thanks.

---
Scott Hurring
Systems Programmer
EAC Corporation
[EMAIL PROTECTED]
Voice: 201-462-2149
Fax: 201-288-1515

> -----Original Message-----
> From: R.S. Herhuth [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 17, 2002 3:42 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Can't figure out how to fix this code...please help
> 
> 
> This is my code:
> 
> 
> <?PHP 
> $objApp = new COM("Outlook.Application"); 
> $myItem = $objApp->CreateItem("olMailItem"); 
> $a=$myItem->Recipients->Add("[EMAIL PROTECTED]"); 
> $myItem->Subject="This is a test"; 
> $myItem->Body="This is a Body Section now.....!"; 
> $myItem->Display(); 
> $myItem->Send(); 
> ?> 
> 
> 
> This is the error I'm getting...
> 
> 
> Warning: Invoke() failed: Type mismatch. Argument: 2 in C:\Program
> Files\Apache Group\Apache2\htdocs\outlook\sendMail.php on line 11
> 
> Fatal error: Call to a member function on a non-object in C:\Program
> Files\Apache Group\Apache2\htdocs\outlook\sendMail.php on line 12
> 
> 
> 
> 
> What did I screw up?
> 
> Thanks,
> Ron
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
--- End Message ---
--- Begin Message ---
I assume that the problem is that olMailItem is a constant and not a string

This causes the error:
$myItem = $objApp->CreateItem("olMailItem");

This does not:
$myItem = $objApp->CreateItem(olMailItem);

Of course you have to have:

com.autoregister_typelib = true

in your php.ini or you will need to load the type library manually to define
the constant properly.

Alan.

----- Original Message -----
From: "Scott Hurring" <[EMAIL PROTECTED]>
To: "Php-Win (E-mail)" <[EMAIL PROTECTED]>
Sent: Friday, May 17, 2002 15:44
Subject: RE: [PHP-WIN] Can't figure out how to fix this code...please help


> Well Invoke() failing can mean a few different things.
> 1) That you're requesting something that can't be found
> 2) There's a more serious error (like Outlook already
> being loaded in memory a few times)
>
> What exactly is on line 11/12 of your code?
>
> I just finished writing PHP+COM+Excel program to automatically
> populate and then print out spreadsheets, so i may be able
> to help ya out... but send some more info, thanks.
>
> ---
> Scott Hurring
> Systems Programmer
> EAC Corporation
> [EMAIL PROTECTED]
> Voice: 201-462-2149
> Fax: 201-288-1515
>
> > -----Original Message-----
> > From: R.S. Herhuth [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, May 17, 2002 3:42 PM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-WIN] Can't figure out how to fix this code...please help
> >
> >
> > This is my code:
> >
> >
> > <?PHP
> > $objApp = new COM("Outlook.Application");
> > $myItem = $objApp->CreateItem("olMailItem");
> > $a=$myItem->Recipients->Add("[EMAIL PROTECTED]");
> > $myItem->Subject="This is a test";
> > $myItem->Body="This is a Body Section now.....!";
> > $myItem->Display();
> > $myItem->Send();
> > ?>
> >
> >
> > This is the error I'm getting...
> >
> >
> > Warning: Invoke() failed: Type mismatch. Argument: 2 in C:\Program
> > Files\Apache Group\Apache2\htdocs\outlook\sendMail.php on line 11
> >
> > Fatal error: Call to a member function on a non-object in C:\Program
> > Files\Apache Group\Apache2\htdocs\outlook\sendMail.php on line 12
> >
> >
> >
> >
> > What did I screw up?
> >
> > Thanks,
> > Ron
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
I'm currently switching from ASP to PHP, so I'm not an MS zealot.  I did
want to clarify some of your statements.


"Court Shrock" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> ASP can't do associative arrays
like a hash table?  ASP has the dictionary object.

> ASP can't do serious string manipulation
ASP has Regular expressions

> ASP cannot short-circuit a boolean expression
?costing you milliseconds?

> ASP database connection is very cryptic (because of COM) and lengthy to
> perform the simplist of queries
You're doing it wrong, then.  It doesn't take any more than PHP.  There are
50 ways to perform queries, and many of them are hard.  Many are simple.

> ASP confuses functions and data structures--arrays and functions
You'll have to explain that one.

> ASP only recognizes strings as double-quote deliminited
So what?

> ASP does not have mult-line comments
So what?

> ASP doesn't understand external http or ftp resources
You have to use COM for this.  I do a lot of stuff with HTTP and FTP.

> PHP has very straightforward type casting and conversion mechanisms
This is easy in ASP as well.

> PHP has output buffering and output filtering built in
ASP does this (response.buffer/response.flush)

> PHP is so much faster! (benchmarks that I've seen on linux/apache ->
> win/iis)
Apples > Oranges.  So far, my evaluation (win/iis 5.0 for both) has been
that ASP is faster.

> PHP can open ftp and http resources
See above.

> PHP has a very complete set of regular expressions that are tied nicely to
> their string and array functions
ASP has regular expressions and they work quite well.

> PHP can send email without any additional downloads and cost
ASP can too (Server.CreateObject("CDONTS.NewMail")).  I'm not sure why
companies sell products for this.


--- End Message ---
--- Begin Message ---
> -----Original Message-----
> From: Benjamin Walling [mailto:[EMAIL PROTECTED]]
> Subject: Re: [PHP-WIN] ASP and PHP
> 
> I'm currently switching from ASP to PHP, so I'm not an MS 
> zealot.  I did
> want to clarify some of your statements.
> 
> > ASP cannot short-circuit a boolean expression
> ?costing you milliseconds?

... or (more importantly), unwanted side-effects.  :)

> > ASP does not have mult-line comments
> So what?

Because it's a HUGE pain to not be able to quickly comment
out entire blocks of code for testing and development.

---
Scott Hurring
Systems Programmer
EAC Corporation
[EMAIL PROTECTED]
Voice: 201-462-2149
Fax: 201-288-1515
--- End Message ---
--- Begin Message ---
Just wanted to stop this whole ASP vs PHP thread before it gets started and 
I receive a zillion e-mails from PHP-WIN list (something that already 
happened a few times for this particular subject).

For those who want to compare the two scription languages, please do so 
between yourselves. Many web sites also have edifying articles on the subject.

I really don't think this discussion is appropriate to this list; I don't 
find it very constructive. I'm subscribed to this list because I want to 
receive/give help on how to use PHP on Windows platforms, not argue over 
which scripting language can do what.

Sorry about the rant, just wanted to avoir an ASP vs PHP war :-)

Olivier

At 16:39 2002-05-17 -0400, Benjamin Walling wrote:
>I'm currently switching from ASP to PHP, so I'm not an MS zealot.  I did
>want to clarify some of your statements.
>
>
>"Court Shrock" <[EMAIL PROTECTED]> wrote in message
>[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > ASP can't do associative arrays
>like a hash table?  ASP has the dictionary object.
>
> > ASP can't do serious string manipulation
>ASP has Regular expressions
>
> > ASP cannot short-circuit a boolean expression
>?costing you milliseconds?
>
> > ASP database connection is very cryptic (because of COM) and lengthy to
> > perform the simplist of queries
>You're doing it wrong, then.  It doesn't take any more than PHP.  There are
>50 ways to perform queries, and many of them are hard.  Many are simple.
>
> > ASP confuses functions and data structures--arrays and functions
>You'll have to explain that one.
>
> > ASP only recognizes strings as double-quote deliminited
>So what?
>
> > ASP does not have mult-line comments
>So what?
>
> > ASP doesn't understand external http or ftp resources
>You have to use COM for this.  I do a lot of stuff with HTTP and FTP.
>
> > PHP has very straightforward type casting and conversion mechanisms
>This is easy in ASP as well.
>
> > PHP has output buffering and output filtering built in
>ASP does this (response.buffer/response.flush)
>
> > PHP is so much faster! (benchmarks that I've seen on linux/apache ->
> > win/iis)
>Apples > Oranges.  So far, my evaluation (win/iis 5.0 for both) has been
>that ASP is faster.
>
> > PHP can open ftp and http resources
>See above.
>
> > PHP has a very complete set of regular expressions that are tied nicely to
> > their string and array functions
>ASP has regular expressions and they work quite well.
>
> > PHP can send email without any additional downloads and cost
>ASP can too (Server.CreateObject("CDONTS.NewMail")).  I'm not sure why
>companies sell products for this.
>
>
>
>--
>PHP Windows Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php

Olivier Hubert
Chef d'équipe informatique/IT Team leader
Groupe Constructo
(514) 856-6646
[EMAIL PROTECTED]
<http://www.constructo.ca/>www.constructo.ca
--- End Message ---
--- Begin Message ---
"Benjamin Walling" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > ASP cannot short-circuit a boolean expression
> ?costing you milliseconds?
Who needs this for performance reasons?  This short-circuiting is for logic
simplification, thus fewer LOC and easier readability/maintainability.

> > ASP does not have mult-line comments
> So what?
Actually, this is a nasty omission when the occasional need arises to
comment out long stretches of code.

> > ASP doesn't understand external http or ftp resources
> You have to use COM for this.  I do a lot of stuff with HTTP and FTP.
Not exactly straightforward for the everyday web scripter.

> > PHP is so much faster! (benchmarks that I've seen on linux/apache ->
> > win/iis)
> Apples > Oranges.  So far, my evaluation (win/iis 5.0 for both) has been
> that ASP is faster.
Of course, ASP is fast in IIS.  Everyone knows why.  Apache + PHP simply
can't be beat by any other web server/scripting language combo in Windows.

Steve (www.stevemagruder.com)


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


Hi I keep getting these install path errors all over the place
(although not on all scripts)

.......install_path=c:\php4\pear.....

On occasion I will change something in the config script and
it will be ok.


I'm a little new to php, can someone tell me what the default
setting should be in the php.in (if indeed that is the problem).

If not, what is this problrm I keep getting

thanks.
--- End Message ---
--- Begin Message ---
I've attempted to compile the mcrypt module with libmcrypt 2.4.22 and
2.5.0, both failed.  Anyone happen to have a copy of the dll which will
work on Windows 2000?

__________________________________________________
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com
--- End Message ---
--- Begin Message ---
To be hired within 45 days - 3 Programmers - please respond to
[EMAIL PROTECTED]

I am the CTO of Intravative Software Corporation. I am looking for three
hardcore php programmers that reside in the Los Angeles area for a 60 day
contract that will pay really well but requires mad hours, lots of coffee
and cartons of cigarettes if you are a smoker. This is a really cool project
and should prove to be your most challenging application development thus
far.

Intravative Software Corp will be launching four new software applications
and the programmers that will be hired will be used to finish off all the
beta and alpha software.

Applicants should have the following skills and experience
No college degree necessary
At least one solid year of experience programming commercial grade
applications with php
Complete knowledge of e-commerce, payment gateways and secure communications
You must know how to program using modular/re-usable coding techniques.
Relational database applications

To apply you must provide
A resume in MS Word format
You must have at least three examples of php applications that you have
built online
You must send along with your resume, an example of your php coding
techniques - You may send a complete application or you may send simply an
excerpt from an application you have developed.

Bonus skills
Distributed Computing
Mirroring and load balancing
Streaming Media


--- End Message ---
--- Begin Message ---
Hello, 

When I import a comma delimited text file into a table using
MySQL Front, a space is added to one of the fields which is a
varchar field. How can I keep this from happening?

TIA,
Jerry
--- End Message ---

Reply via email to