Search found 5 matches

by $0.05$
Tue Aug 05, 2003 8:51 am
Forum: PHP - Code
Topic: regular expressions??
Replies: 1
Views: 222

okay, i figured it out, it should be like this

Code: Select all

<?php
preg_match_all("/          <p class="bizPhone">Phone:\n          <strong>\n          (.*?)\n          <\/strong><\/p>/", $info, $array);
?>
by $0.05$
Tue Aug 05, 2003 8:38 am
Forum: PHP - Code
Topic: regular expressions??
Replies: 1
Views: 222

regular expressions??

okay, i have a text file that im searching through, and it has many instances with text formated exactly like this &lt;p class="bizPhone"&gt;Phone: &lt;strong&gt; &#1111;b]&#1111;SOME PHONE NUMBER IN HERE]&#1111;/b] &lt;\/strong&gt;&lt;\/p&gt; no...
by $0.05$
Sat Dec 14, 2002 9:43 am
Forum: Job Hunt
Topic: PHP Programmer Required
Replies: 17
Views: 13388

haha

lol, im a php and perl programmer, but theres no way in hell im doing it for 15/hour, and on top of my school, spending 4 hours a day - this guys insane
by $0.05$
Sun Oct 06, 2002 9:46 pm
Forum: PHP - Code
Topic: Date question.
Replies: 7
Views: 901

Date question.

How would i find out the number of days since... any given year?

IE. the number of days that have passed since 1900.
by $0.05$
Fri Sep 27, 2002 10:54 pm
Forum: PHP - Code
Topic: Having problems with IMAP extension
Replies: 2
Views: 469

Having problems with IMAP extension

here is my code: &lt;?php $mailserver = "pop server"; $port = "110"; $username = "user"; $password = "password"; $mail = imap_open("{".$mailserver."/pop3:".$port."}", $username, $password); $number = imap_num_msg($mail); $x=1;...