Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

General Help | Forum profile

Forum profile page for General Help on http://www.phpbuilder.com. This report page is the aggregated overview from a single forum: General Help, located on the Message Board at http://www.phpbuilder.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "General Help" on the Message Board at http://www.phpbuilder.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: PHPBuilder.com - General Help (site profile, domain info phpbuilder.com)
Title: General Help
Url: http://phpbuilder.com/board/forumdisplay.php?s=...
Users activity: 28 posts per thread
Forum activity: 77 active threads during last week
 

Posting activity on General Help:

  Week Month 3 Months
Threads: 77 241 651
Post: 211 680 1,826
 

General Help Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
habbardone
30
user's latest post:
Time out problem
Published (2009-11-07 15:03:00)
Hi, I am doing a download of ten pages from the internet and processing and storing the data. The processing was timing out so I just changed the max_execution_time from 30 to 120 seconds and also the max_input_time. After saving the php.ini file and re-opening it, it now reads: ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; max_execution_time = 120 ; Maximum execution time of each script, in seconds max_input_time = 120 ; Maximum...
Weedpacket
27
user's latest post:
Regular expressions: Match a...
Published (2009-11-08 03:55:00)
Have you considered using DOM to parse the HTML? Then you wouldn't have to parse it yourself.
totus
20
user's latest post:
tmpfile and newlines
Published (2009-11-05 18:19:00)
Thank you Weedpacket for your eagle eyes
dagon
19
user's latest post:
Changing é into html...
Published (2009-11-08 14:08:00)
how about not converting them and using utf8 or what ever charset the txt file is using
big.nerd
18
user's latest post:
help with smpp
Published (2009-11-08 11:10:00)
leksoday, This is a commercial service, just google 'Sending SMS with PHP' or 'SMS PHP Gateway', etc. This does cost money, and if you aren't prepared to send a decent amount of SMS Messages they may not want to speak to you.
NogDog
14
user's latest post:
PHP.ini Fine from command line -...
Published (2009-11-06 18:30:00)
Just a couple thoughts which may or may not apply: If you changed the php.ini file, did you restart Apache afterwords? Is there a .htaccess file anywhere in the directory tree of the script that might be overriding any settings when run via Apache? I think some configuration settings are not applicable in command line mode, so you might want to check for that if neither of the above address the issue.
Installer
11
user's latest post:
XML and simpleXML
Published (2009-11-06 06:59:00)
XMLReader also works well for often-used, consistently-formatted documents. It's simple, fast, and uses less memory than SimpleXML. PHP Code: $xmlr = new XMLReader ; $xmlr -> open ( $url ); $set = - 1 ; while ( $node = $xmlr -> read ()) {     if ( $xmlr -> nodeType != XMLReader :: ELEMENT ) {         continue;...
pastet89
11
user's latest post:
Regular expressions: Match a...
Published (2009-11-08 09:54:00)
... I have just fixed it without them!!! Thanks a lot for the initial help!!! Here is my code: Code: ((?:[[:space:]]*<img src='/img/b.png' class\='[redYlowCard]+' alt\='' /\>?[[:space:]]*)*)
BuzzPHP
8
user's latest post:
CakePHP install issue
Published (2009-10-30 10:43:00)
Cake sucks. Use buzz. No kidding, I went nutts working on someones Cake code. Cake was the inspiration for making buzz. MVC designs suck. Thats my POV
Neville1985
8
user's latest post:
[RESOLVED] Salt and Passwords
Published (2009-11-06 06:15:00)
Appreciate it guys
 

Latest active threads on General Help::

PHPBuilder.com
Started 5 days, 15 hours ago (2009-11-04 10:17:00)  by big.nerd
suzie, What kind of caching are you talking about? Are you planning on storing the data into a SQL database? If so - SQL Caching may or may not be required dependent on the number of visitors to the site, as well as what with your server is more efficient, i.e. SCSI disks have a very fast seek time making disk caching of very common SQL queries (verses a low SQL server) a good idea, however...
Thread:  Show this thread (6 posts)   Thread info: Site caching Size: 916 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Site caching :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 1 day, 11 hours ago (2009-11-08 14:08:00)  by dagon
how about not converting them and using utf8 or what ever charset the txt file is using
Thread:  Show this thread (3 posts)   Thread info: Changing é into html entities without touching the html elements ? Size: 87 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Changing é into html entities without touching the html elements ? :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 1 day, 1 hour ago (2009-11-09 00:50:00)  by Kudose
That error indicates that the number of columns you are inserting into does not match the number of values you are inserting. You should use mysql_real_escape_string to handle the quotes for each value, or an adapter that has prepared statements, such as PDO. You should also look into MySQL's LOAD DATA ... http://dev.mysql.com/doc/refman/5.1/en/load-data.h tml
Thread:  Show this thread (2 posts)   Thread info: Help importing CSV file into MySql Size: 572 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Help importing CSV file into MySql :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 2 days, 3 hours ago (2009-11-07 22:46:00)  by nrg_alpha
The pattern I came up with that closest mimics what you seek would be as follows: Example: PHP Code: $str = "blablabla 00 00 bla 11 blablabla 22 blablabla 33 33 33 33 blabla 44 bla" ; preg_match_all ( '#bla\s+((?:\d+\s+)+)(?=bla)#i' , $str , $matches );; $matches [ 1 ] = array_map ( 'rtrim' , $matches [ 1 ]); // remove right spaces...
Thread:  Show this thread (5 posts)   Thread info: Regular expressions: Match a repeating string Size: 3,061 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Regular expressions: Match a repeating string :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 3 days, 21 hours ago (2009-11-06 04:37:00)  by Weedpacket
The elements of $matches are arrays, not strings nor integers. print_r($matches);
Thread:  Show this thread (6 posts)   Thread info: Getting warnings for my array function. Size: 96 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Getting warnings for my array function. :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 2 days, 7 hours ago (2009-11-07 18:10:00)  by rincewind456
Quote: Do I have to re-boot the server in order to apply these changes ? Yes.
Thread:  Show this thread (2 posts)   Thread info: Time out problem Size: 357 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Time out problem :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 4 days, 7 hours ago (2009-11-05 18:25:00)  by Weedpacket
Since it's regular it sounds like what you want is a cron job (search for that). On the other hand, since you want to use a browser to view the progress, use set_time_limit to regularly reset the timeout limit while running through the entire batch and periodically produce output (to prevent the page loading from timing out). Or, in a modification of the previous idea, have the browser ...
Thread:  Show this thread (4 posts)   Thread info: Automatic Batch processing Size: 605 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Automatic Batch processing :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 3 days, 7 hours ago (2009-11-06 18:30:00)  by NogDog
Just a couple thoughts which may or may not apply: If you changed the php.ini file, did you restart Apache afterwords? Is there a .htaccess file anywhere in the directory tree of the script that might be overriding any settings when run via Apache? I think some configuration settings are not applicable in command line mode, so you might want to check for that if neither of the above ...
Thread:  Show this thread (2 posts)   Thread info: PHP.ini Fine from command line - Ignored by Apache Size: 449 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: PHP.ini Fine from command line - Ignored by Apache :: General Help :: PHPBuilder.com"
PHPBuilder.com
Started 5 days, 15 hours ago (2009-11-04 10:40:00)  by Installer
A web search for "phrase frequency algorithm" turned up, for example, this pdf .
Thread:  Show this thread (6 posts)   Thread info: Can I find 3-word groups in a text string? Size: 184 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Can I find 3-word groups in a text string? :: General Help :: PHPBuilder.com"
 

Hot threads for last week on General Help::

General Help
Started 6 days, 20 hours ago (2009-11-03 05:01:00)  by Weedpacket
$buffer = file_get_contents($stream) is roughly short for PHP Code: $buffer = '' ; $handle_foo_unique_id = fopen ( $stream , 'rb' ); while(! feof ( $handle_foo_unique_id )) { $buffer .= fread ( $handle , 8192 ); } fclose ( $handle_foo_unique_id ); unset( $handle_foo_unique_id ); except that since it's ...
Thread:  Show this thread (11 posts)   Thread info: Question about how fopen works. Size: 2,435 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Question about how fopen works. :: General Help :: PHPBuilder.com"
General Help
Started 1 week ago (2009-11-02 03:13:00)  by dagon
1. do your own homework 2. no one here is going to teach you php from beginning to end 3. the internet is full of tutorials, go read some.
Thread:  Show this thread (9 posts)   Thread info: help me in my thesis Size: 152 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: help me in my thesis :: General Help :: PHPBuilder.com"
General Help
Started 5 days, 9 hours ago (2009-11-04 16:24:00)  by big.nerd
There is functions to remove non-char's, but not really non-words. dg354srt is valid characters, and all letters could potentially be used in a sentence. What I would do is take a look at your string and see if there is any kind of pattern that could be used against what you have. You can do it if you want to remove any words that contain anything other than a specified set of characters...
Thread:  Show this thread (8 posts)   Thread info: How do I clean up the output og this ? Size: 766 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How do I clean up the output og this ? :: General Help :: PHPBuilder.com"
General Help
Started 1 week ago (2009-11-02 03:00:00)  by dagon
instead of echo, assign the value to a variable, and send that with in the email.
Thread:  Show this thread (7 posts)   Thread info: Help - Including "if" statements into email $message Size: 81 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Help - Including "if" statements into email $message :: General Help :: PHPBuilder.com"
General Help
Started 6 days, 14 hours ago (2009-11-03 11:04:00)  by laserlight
What exactly are you trying to do?
Thread:  Show this thread (7 posts)   Thread info: stored password practices gpg, crypt_gpg, gnupgme, crypt Size: 34 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: stored password practices gpg, crypt_gpg, gnupgme, crypt :: General Help :: PHPBuilder.com"
General Help
Started 4 days, 13 hours ago (2009-11-05 12:38:00)  by big.nerd
Richard, The XML you have shown is not compliant, at least not on my system (the DataSet you are declaring with the xmlns i dont have) But you can access XML as an array, using an example from php.net: PHP Code: <?php $xmlstr = <<<XML <?xml version='1.0' standalone='yes'?> <movies> <movie> <title>PHP: Behind the Parser</title> <characters> <character>...
Thread:  Show this thread (7 posts)   Thread info: XML and simpleXML Size: 3,664 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: XML and simpleXML :: General Help :: PHPBuilder.com"
General Help
Started 1 week, 1 day ago (2009-11-01 12:11:00)  by habbardone
My link made with urlencode() wont work, please help. Hello, I have my site analyzer script nearly working, but the link that I am trying to pass back to the query is not being accepted. The easiest way to explain what I mean is to show you the script on my server: When you follow the link below you will see an output...
Thread:  Show this thread (6 posts)   Thread info: My link made with urlencode() wont work, please help. Size: 5,835 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "My link made with urlencode() wont work, please help. :: General Help :: PHPBuilder.com"
General Help
Started 1 week, 1 day ago (2009-11-02 00:08:00)  by xxdalexx
replacing comma at beginning and end of variable I'm working on a shopping cart, and i have one variable to set the items of the shopping cart, separated by commas then exploded into an array. I'm working on the remove an item part of it and i cant figure out fully functional way to do this. I'm using str_replace to remove it from that string ...
Thread:  Show this thread (6 posts)   Thread info: replacing comma at beginning and end of variable Size: 1,172 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "replacing comma at beginning and end of variable :: General Help :: PHPBuilder.com"
General Help
Started 1 week, 1 day ago (2009-11-01 17:04:00)  by Maharg105
Problem with retaining form data I have a form on my website that carries out a number of validation checks on the data that the user enters. If there are any problems then the user is returned to the form with an error message detailing the problem. Obviously I want the previously entered data to be retained. I have had no problems doing...
Thread:  Show this thread (6 posts)   Thread info: Problem with retaining form data Size: 2,081 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Problem with retaining form data :: General Help :: PHPBuilder.com"
General Help
Started 4 days, 3 hours ago (2009-11-05 22:19:00)  by Weedpacket
No; have you checked your configuration?
Thread:  Show this thread (6 posts)   Thread info: [RESOLVED] PHP ver 5 and sessions Size: 40 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: [RESOLVED] PHP ver 5 and sessions :: General Help :: PHPBuilder.com"