Search found 67 matches
- Thu Jan 09, 2003 4:13 am
- Forum: PHP Scripts
- Topic: New script...
- Replies: 2
- Views: 2540
New script...
I have recently written a script that I feel is somewhat useful. My problem is that I am having a problem getting it out and around. What is an effective way to get my script out there without being an annoying a$$h0le? I dont want to do like unsolicited mailing, etc... but just want to know how oth...
- Thu Sep 26, 2002 11:19 am
- Forum: PHP coding => General
- Topic: Form
- Replies: 3
- Views: 2066
Ok, Ill try to explain in more detail. Im writing a statistics program that has an ip filter. Basically, it will exclude certain ip ( or patterns ) from the stats it collects. Currently, I have it stored in a php file where one would have to enter the data in a syntax-correct array. I want to store ...
- Thu Sep 26, 2002 8:26 am
- Forum: PHP coding => General
- Topic: Form
- Replies: 3
- Views: 2066
Form
I have a dropdown box that contains multiple selections... I want to be able to save this to a database. My form method is POST... when i tried to save it, it did a var_dump($_POST); and it will only save what is selected... if nothing is selected, it wont pass anything. How can I get the contents o...
- Wed Sep 18, 2002 3:15 am
- Forum: PHP coding => Mail
- Topic: Problem with php form mailer
- Replies: 5
- Views: 3713
hmmm....im not sure then, sorry If your variables are coming through ok ( did you use a var_dump($_POST); to verify? ) then I dont see what else could be wrong. Perhaps one of the guru's has some suggestions I checked the manual and they had a couple of comments regarding windows users. Might be wor...
- Tue Sep 17, 2002 9:12 am
- Forum: phpMyAdmin
- Topic: Were to get
- Replies: 1
- Views: 2184
- Tue Sep 17, 2002 9:10 am
- Forum: PHP coding => Mail
- Topic: Problem with php form mailer
- Replies: 5
- Views: 3713
Maybe its an "auto_global" problem. I think this setting by default is on, and most webservers turn it off due to hazards. When you reference a variable from page to page (for instance, a text field or a hidden field), do not reference it by $field_name... you have to reference it by $_GET["field_na...
- Tue Sep 17, 2002 9:03 am
- Forum: PHP coding => General
- Topic: FOR LOOP
- Replies: 5
- Views: 3173
- Tue Sep 17, 2002 9:00 am
- Forum: PHP coding => General
- Topic: Login only once
- Replies: 6
- Views: 2950
- Tue Sep 17, 2002 8:52 am
- Forum: PHP coding => General
- Topic: FOR LOOP
- Replies: 5
- Views: 3173
- Fri Sep 13, 2002 4:16 am
- Forum: PHP General
- Topic: email encryption
- Replies: 4
- Views: 2871
I am not 100% sure as I have never done it myself. I searched the net for a few minutes... this site might help:
http://www.alt-php-faq.org/local/65/
I didnt read into details, but looked like it could do it.
best of luck
Will
http://www.alt-php-faq.org/local/65/
I didnt read into details, but looked like it could do it.
best of luck
Will
- Thu Sep 12, 2002 9:23 am
- Forum: PHP General
- Topic: email encryption
- Replies: 4
- Views: 2871
- Tue Sep 10, 2002 3:33 am
- Forum: PHP coding => General
- Topic: Recursion ?
- Replies: 2
- Views: 1856
- Mon Sep 09, 2002 5:28 pm
- Forum: PHP coding => General
- Topic: Recursion ?
- Replies: 2
- Views: 1856
Recursion ?
I come to web programming from an extensive background in client side C++ programming. Im used to recursion in alot of my previous programs and was wondering if PHP supports such a concept. I had tried a simple script and it didnt work as I anticipated. Take this for instance: function display_tree&...
- Fri Sep 06, 2002 4:45 am
- Forum: PHP coding => General
- Topic: Regular Expressions
- Replies: 1
- Views: 1824
hello I thank you for your response. I know have some questions though. If memory serves me right, then "^" and "$" match the beginning and end of a string, respectively. What does the "+" do? Do you know where I could find some good docs on regular expressions? Im kinda new to them and want to star...
- Tue Sep 03, 2002 11:24 am
- Forum: PHP coding => General
- Topic: Regular Expressions
- Replies: 1
- Views: 1824
Regular Expressions
I have a question. I thought that I understood regular expressions, but I guess I dont. Could anyone lend a helping hand? I have this: preg_match("/([0-9]{2})([a-zA-Z])([0-9]{1,4})/i", $_POST["job_number"], $mat); var_dump($...
- Tue Sep 03, 2002 10:56 am
- Forum: PHP coding => General
- Topic: Are sessions secure?
- Replies: 3
- Views: 2004
How dont they seem secure? They are not sent across the internet and the only way to obtain their data without you is to hack the actual server itself (and then you have to know where the session data is kept). I noticed by default its in the /tmp in Linux, and wherever in Windows (I believe its the...
- Thu Aug 29, 2002 7:11 am
- Forum: MySQL Installation
- Topic: Remote Administration
- Replies: 4
- Views: 3411
- Thu Aug 29, 2002 6:52 am
- Forum: MySQL Installation
- Topic: Remote Administration
- Replies: 4
- Views: 3411
- Thu Aug 29, 2002 4:55 am
- Forum: PHP coding => General
- Topic: Functions
- Replies: 6
- Views: 2944
- Thu Aug 29, 2002 4:52 am
- Forum: PHP coding => General
- Topic: problems logging out with cookies
- Replies: 2
- Views: 2035
- Thu Aug 29, 2002 4:49 am
- Forum: MySQL Installation
- Topic: Remote Administration
- Replies: 4
- Views: 3411
Remote Administration
Is it possible to remotely control a mySQL database. For instance, can I control the database from my house on a server with a webhosting company somewhere in new york (without having to login to my control panel).
Thanks
Will
Thanks
Will
- Thu Aug 29, 2002 4:41 am
- Forum: PHP coding => General
- Topic: Uh.. hi. PHP n00b here..
- Replies: 1
- Views: 2563
Well then, I suggest you start reading From looking at the script a second time, I would suggest finding another one. There are a ton of poll scripts out there ( m ) and im sure if you looked long enough, you would even find one that is self-automated and has an installer. In order to understand a s...
- Tue Aug 27, 2002 7:18 am
- Forum: PHP coding => General
- Topic: how to increase the speed of a script
- Replies: 2
- Views: 2130
The only real part you can control is how fast the PHP is rendered (or parsed) and sent back... you can control net congestion and other factors like that. The best way would be to run a serious of test (ie run your script many many times) with debugging code telling you how long certain parts of yo...
- Tue Aug 27, 2002 7:06 am
- Forum: PHP coding => General
- Topic: help....upgrade
- Replies: 2
- Views: 2469
- Tue Aug 27, 2002 7:03 am
- Forum: PHP coding => General
- Topic: Uh.. hi. PHP n00b here..
- Replies: 1
- Views: 2563