Problem with Array and Database :/

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
kiro24
Forum Newbie
Posts: 1
Joined: Mon Nov 21, 2011 3:23 pm

Problem with Array and Database :/

Post by kiro24 »

fawafawfwa
Last edited by kiro24 on Tue Nov 22, 2011 10:37 am, edited 1 time in total.
maxx99
Forum Contributor
Posts: 142
Joined: Mon Nov 21, 2011 3:40 am

Re: Problem with Array and Database :/

Post by maxx99 »

Don't do shortcuts like

Code: Select all

 ('$pics[0][$i]>', '$links[0][$i]')
Go with -> ' " . $arr[x][y] . " '

Code: Select all

 ('" . $pics[0][$i] . "', '" . $links[0][$i] . "')
Post Reply