RE: [PHP] Win PHP Editor...

2002-08-09 Thread Jonni

i LOVE my edit plus! :)



> -Original Message-
> From: Liam MacKenzie [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 09, 2002 6:38 PM
> To: Dave at Sinewaves.net; PHPlist
> Subject: Re: [PHP] Win PHP Editor...
>
>
> Well, I still believe the best editor for windows is Editplus
> (www.editplus.com)
>
> Small, fast, stable, tonnes of features and it supports a lot of
> file type.
> If it doesn't give you colour coding for a particular language, say Cold
> Fusion, go to the homepage and download the plugin.
>
> It's only 800K to download, give it a shot.  It's uninstall
> program actually
> gets rid of it aswell, completely.  so if you don't like it, no sweat  :-P
>
> Just my 2 cents...
>
> Liam
>
>
>
> - Original Message -
> From: "Dave at Sinewaves.net" <[EMAIL PROTECTED]>
> To: "PHPlist" <[EMAIL PROTECTED]>
> Sent: Saturday, August 10, 2002 3:42 AM
> Subject: [PHP] Win PHP Editor...
>
>
> > Just have to add one little fine piece of free software that nobody's
> > mentioned yet, Crimson Editor (http://www.crimsoneditor.com )
> >
> > No code completion, but it's got every other feature of the big
> commercial
> > beasts... definitely check it out - I just switched over, and
> it's great.
> >
> >
> > From the site:
> > --
> > Edit multiple documents
> >- switch between documents using file selection tab
> >- pressing Ctrl+Tab brings the last accessed document to top
> >
> > Syntax highlighting
> >- configurable via custom syntax files
> >- preconfigured for more than 50 computer languages
> >
> > Multi-level undo / redo
> >- all editing actions are recorded from the opening of a file
> >- unlimited undo and redo buffers
> >
> > Find & Replace
> >- replace specified text one by one, or as a whole
> >- support regular expression
> >
> > Natural word wrapping
> >- word wrapping does not affect syntax highlighting
> >- configurable wrapping indentation (easer to understand the syntax)
> >
> > Spell checker
> >- around 10 words were added in the dictionary
> >- users can register new words in their own dictionary
> > (InstallDir/user.dic)
> >
> > User tools and macros
> >- execute external programs with proper arguments
> >- compile, execute and test your code
> >- ease your fingers with key stroke recording (record & replay)
> >
> > Directory tree view window
> >- click to open documents
> >- filter to display only selected file class
> >
> > Edit remote files directly using built-in FTP client
> >- open, edit, and save documents in remote FTP servers
> >- save account information (encoded) for automatic logon
> >
> > Print & Print preview
> >- configurable page header and footer
> >- print with line numbers
> >- print with syntax highlighting (used in color printer)
> >- true type font selection for printer
> >
> > Other useful features
> >single instance / multiple instances, ability to detect
> changed files,
> >bookmark & go to, highlight active line, highlight matching pairs,
> >multi-byte support with integrated IME (for eastern languages),
> >auto indent, wheel mouse support, copy & paste, line numbers,
> >configurable line spacing, option to save files in Unix format,
> >option to set working directory
> >
> >
> >
> >
> > Very nice little IDE, and the price is right! Nothing!
> >
> > Dave
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
> >
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>


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




[PHP] mysql_fetch_array problem

2002-08-11 Thread Jonni

hi everyone!  i'm new here (and new to php) and have a question.  i'm trying
to run a simple blogger type script but am running into a problem i can't
seem to troubleshoot.  first, the three items i put into the database aren't
showing up on my page and then when i try to go to the archive for the
month, i get the following:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
resource in /home/blar/public_html/inc/main_inc.php on line 11

here's a part of my code of main_inc (first line is line 11):
function showPosts($result,$page)
{
 if ($myrow = mysql_fetch_array($result))
 {
  do
  {
   $rawdate = $myrow["postDate"];
   $formdate = date("l, F j, Y",
(strtotime(ereg_replace('([0-9]*)-([0-9]*)-([0-9]*)','\2/\3/\1',
$rawdate;
   if ($date != $formdate)
   {
$date = $formdate;
?>



 

http://blar.org
http://uglypropaganda.com




FW: [PHP] newbie... - undefined var

2002-08-26 Thread Jonni

try using a switch statement.  
 

 
> -Original Message-
> From: Matt Zur [mailto:[EMAIL PROTECTED]]
> Sent: Monday, August 26, 2002 12:41 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] newbie... - undefined var
> 
> 
> I'm just starting to learn php and have a quick question. I'm making a 
> site with file includes.  so for example my default page will be:
> index.php and services page with be called services.php
> 
> BUT... I want to link to services via this method:  
> index.php?vw=services
> 
> Still no problem there.
> 
> BUT on the index.php I want to write this if statement:
> 
> if ($vw == "") {
> write this code
> }
> 
> But then I get an error that the var is non defined.  Do all 
> vars in PHP 
> have to be defined first?  If it isn't defined, doesn't the program 
> assume it's value is nothing?
> 
> -Matt


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