‘PHP’ Archive

Using arrays in form element names July 27, 2009 1 Comment

Sometimes there is variable number of similar elements on a form. For example, phone numbers. To iterate all filled values on the server it will be nice to use arrays. And form element naming allow it:

<form method="post">
<input type="text" name="phone[0]" />
<input type="text" name="phone[1]" />

</form>

Using PHP it’s easy to iterate through those values now:

foreach ($_POST[‘phone’] as phone) [...]

Installing GD on Mac OS Leopard October 28, 2008 No Comments

Found a great article how to do this – Install GD for PHP on Mac OS X 10.5 Leopard. Thanks, Chris!