Search found 519 matches

by AVATAr
Thu Nov 01, 2007 8:55 am
Forum: Javascript
Topic: ajax and remote refresh
Replies: 3
Views: 1017

You are on the client side... return a javascript to do that.
by AVATAr
Wed Feb 09, 2005 3:29 pm
Forum: PHP - Code
Topic: preg_match and line breaks
Replies: 1
Views: 705

preg_match and line breaks

Im not very familiar with regular expressions (i have never work with them).. so here we go. I wanna match words between tags. like this <tag1> hello world </tag1> so I have tried this, but it dont match when line breaks appears within the text: <?php $string = <<<END <tag1>without linebrakes works ...
by AVATAr
Wed Jan 19, 2005 9:41 am
Forum: Graphics
Topic: What do you look for in a graphics application?
Replies: 10
Views: 10234

versioning!!

So i can go back and forth when manipulating a photo.

by the way.. very pretty
by AVATAr
Wed Jan 19, 2005 9:22 am
Forum: Miscellaneous
Topic: Project Management
Replies: 6
Views: 2434

Addapting patrikG (linux apps), i do: 1. Document outlining application spec and functionality 1.1 Make our client (boss) sign it or approve it. 2. DIA: Application Workflow Diagram 2.2 DIA: workflow diagram of the main process 3. Umbrello: UML class diagram 3.5 Predesign the Database with DBDesigne...
by AVATAr
Wed Jan 05, 2005 5:09 am
Forum: PHP - Code
Topic: $_GET not being recognised by SQL statements
Replies: 4
Views: 1104

change this '".$_GET['lea']."' for '.$_GET['lea'].' (i remove double quotes)
by AVATAr
Wed Jan 05, 2005 4:57 am
Forum: PHP - Code
Topic: $_GET not being recognised by SQL statements
Replies: 4
Views: 1104

Show the complete code ;)
by AVATAr
Tue Jan 04, 2005 7:11 pm
Forum: PHP - Code
Topic: [SOLVED] What is PHP_Self ? How do I properly configure it?
Replies: 5
Views: 1131

it seems that the link the script sends have the //, try hacking the link its sending so it only put one /
by AVATAr
Tue Dec 21, 2004 12:41 pm
Forum: PHP - Code
Topic: Coding on the Outlook calendar
Replies: 19
Views: 5484

You can send an attachment.. i dont know if you can replicate the outlook attach. try sending the attach generate by outlook through php
by AVATAr
Tue Dec 21, 2004 12:39 pm
Forum: General Discussion
Topic: favorite browser?
Replies: 10
Views: 1896

jaja
by AVATAr
Thu Dec 16, 2004 5:31 am
Forum: PHP - Code
Topic: Submitting form information to an array
Replies: 4
Views: 1626

First. To retreive variables from a POST from a forum use $_POST $number=count($_POST&#1111;"pets"]); To print the content you could use foreach <?php foreach ($_POST["pets"] as $value) { echo $value.'<br/>'; } ?> and always you can dump de variables to show the contents like...
by AVATAr
Fri Dec 10, 2004 12:39 pm
Forum: PHP - Code
Topic: PHP date calculation
Replies: 2
Views: 705

In the online documentation: [php_man]date[/php_man] and read user comments
by AVATAr
Thu Dec 09, 2004 10:13 am
Forum: PHP - Code
Topic: error Undefined offset 2 - help please
Replies: 2
Views: 1071

Undefined offset

Undefined offset happens when you are referencing a key of an array, and it doesent exists.. example: <?php $arr = array('a'=>1,'b'=>2,'c'=>3); echo $arr['f']; ?> this will give you that error. you can suppress is using @ <?php $arr = array('a'=>1,'b'=>2,'c'=>3); echo @$arr['f']; ?>
by AVATAr
Thu Dec 09, 2004 10:11 am
Forum: PHP - Code
Topic: return row = 1
Replies: 3
Views: 854

by AVATAr
Thu Dec 09, 2004 10:06 am
Forum: PHP - Code
Topic: Redoing Webpage without frames but have logistical issue
Replies: 6
Views: 1425

magicrobotmonkey wrote:that's a useful article!
it is! jej
by AVATAr
Thu Dec 09, 2004 7:54 am
Forum: PHP - Code
Topic: Highliting / making bold in search results
Replies: 4
Views: 805

$definition = str_ireplace($word,'<em>'.$word.'</em>',$definition);

before you echo it