!= Code What Does It Stand For?
I googled around but couldnt find the meaning for the following code:
if ($pass != $pass1)
Im not sure if you'd need to see the rest of the code to explain this to me. If so just say so and I can post the entire script I found this on.
View Complete Forum Thread with Replies
Related Forum Messages:
Stand Alone PHP
I want to use PHP as a stand alone scripting language. By that I mean without a web server present and without any HTML in the code. I have done this in a few tests on a Win 2000 platform and, with just PHP.exe and a DLL and the ADOdb stuff in a lone directory, I have successfully run some scripts to talk to a database. All fine and good. But the real goal is to make this into a tiny runtime environment that I can deliver to any machine ... Linux or Windows ... and run some performance tools on the local database engines ... all without any installations on those host machines (i.e. just copy the files ... run the analysis scripts and copy the results for post analysis . without changing the host system). Is there a discussion anywhere about: Keeping the runtime size to a minimum? Cross platform got-ya's ? (I read a couple of messages about this, just now in this group) If this is a topic that has been covered to death .. then I apologize and will continue my search of back news articles. However, if anyone else is interested in this or would care to shed some light on these issues for me, please contact me either here or directly.
View Replies !
What Does %something Stand For?
There is this line in a code I have to modify in order to be able to use: %response = $lperl->curl_process($myorder); And I can't find anywhere what does %response stand for nor what the % operator is used for in this line... It is clear that I'm not an OOP PHP programmer so I can't even begin to understand this line... Anyways it gives me a syntax error and I can't use it like this... I searched the PHP manual for % operator all I get is nothing since it is is somekind of wildcard sign and same situation on these forums... All I know is that % is used as modulo operator but that's clearly not the case here..
View Replies !
Stand Alone Win98?
how would i get php running with mysql on a windows 98 machine with out a server so that i could test my scripts after i create them.?
View Replies !
Stand Alone PHP Parser
I'm wondering if someone could give some direction on a problem I have or share their experiences. I'm wanting to create a little PHP application that will run on a local machine and use ODBC to connect to a Access database on that machine. A series of forms will interact with the database but if I understand correctly, I need some way to parse the PHP code. Is there a stand alone parser that could be used in place of a HTTP server?
View Replies !
PHP GTK Vs Every Other Stand-alone Language
It seems to me PHP-GTK has all those nifty PHP-features packed inside. I must say I am kindof a PHP-freak because te syntax and variant-types I like so much I really want to keep programming in PHP and PHP-GTK more and more. Does somebody have a different view on this? I am progamming this on a windows-machine and haven't seen any other language perform better after slamming programs together.
View Replies !
Stand Alone Script
Is it possible to have a script run on a client pc that does not have PHP or web server installed? The rationale here is that I am trying to script a page that will manipulate images for sizing and then ftp them to my host, and I want to keep the look and feel of the whole application. I have worked with PHP and Javascript so don’t have the skills to create this in any other languages. I have also searched to see if Javascipt would do this but no luck so far.
View Replies !
Compiling PHP To Stand Alone Executable In 64bit?
I know that there are easy ways to compile PHP into a stand alone executable in 32bit.. but does anybody know of a program that works for doing this in XP 64bit with 64bit PHP so that it will generate a 64bit executable? P.S. Yes I have searched but haven't been able to find any for 64bit it seems that most people who make software hate us 64bit users.
View Replies !
Old Code Vs New Code - Language Syntax Change?
I've recently begun programming PHP again and have found my old code doesn't work anymore. It's been a few years since my code was written, and simple functions don't seem to be working. I've done a bit of research into the syntax again and found the following; I used to use a function as such; if ($REQUEST_METHOD=="POST") { Now I've seen alot of the syntax is if ($_SERVER($REQUEST_METHOD=="POST")) { And referencing variables from the form is as such; $_POST['variable'] Where previously I could reference them in the simple form; $variable Has there been a language syntax change that would cause my old code to be obsolete? Is there a configuration line that could be changed to allow this old code to work?
View Replies !
Regular Expression :: Format Anything Within <code> And </code>
Any regular expression wizards out their tonight? This is driving me crazy...trying to take a string full of HTML and format anything within the <code></code> tags using highlight_string(). $string = "<strong>This</strong> is some HTML!!!<code>echo "Hello, World!";</code>No more code!!!"; $pattern = "(<code>)*(</code>)"; $replacement = " |