[PHP] PHP Web Developer Opportunity

2013-03-04 Thread Allison Garcia
*SMALL WORLD LABS is looking for a PHP WEB DEVELOPER *

Small World Labs is looking for a PHP Web Developer to be a part of our
team. The position is focused on managing, supporting and expanding the
Small World Labs social collaboration and online community platform. This
role will interface with the product, support, professional services and
client teams to provide technical guidance and drive future platform
expansion. You will be responsible for both front  back-end development
for the Small World Labs platform.

We are looking for an intelligent, fast learner who can thrive in a high
energy environment. Strong knowledge of PHP and the ability to work in a
dynamic team are required.

*Technical Background:*
- PHP (the primary development language)
- CSS, MYSQL, DHTML, Javascript, JQuery, AJAX
- Web Services using SOAP or RESTful API
- Mobile development
- Understanding of version control systems
- Familiarity with Linux or another UNIX OS is preferred

*Required Experience:*
- At least 3 years successful technical development experience
- Proven ability to manage multiple projects in a fast paced environment
- Ability to take ownership over development projects
- Knowledge of online social and professional networks and developer
interfaces
- Strong communication skills, both written and verbal
- Experience with requirements gathering

*Education:*
- Bachelors or graduate degree

*Location:*
- Austin, Texas

Interested parties, please email your resume with the subject line PHP Web
Developer to j...@smallworldlabs.com.

*About Small World Labs*
Small World Labs is an experienced provider of an online community and
social collaboration platform that enables organizations to connect with
their constituents in new ways. We help non-profit organizations understand
how to engage with their members to drive loyalty, create opportunities,
ignite conversations, distribute knowledge, and share experiences.


[PHP] Testing on the local server

2005-11-18 Thread Allison
First of all, I'm completely new to PHP and pretty new to web 
programming/management in general, so if you respond, try not to use any 
really complex terms or anything that I may not understand!

right now I have an existing PHP site that I downloaded for editing. But I 
am having problems viewing/testing .php documents.

This one may be just a more general question not necessarily PHP-related...
The server contains a folder of includes that are on every page (e.g. the 
header and footer, navigation bar, etc) - and all of these files are in .php 
format. I try to view these .php files on the web server just to see what 
they look like, and it says Access Denied, even though I've set the 
properties to allow all users to read the files in this folder. How can I 
view these?

I use Dreamweaver and I try to test the files on the local host, but the 
page doesn't even show up. This maybe a stupid question..but to test on a 
local server, would I just need to download PHP?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] php works in IE not Firefox?

2005-05-14 Thread Simon Allison
By the time a properly executed script(executed on the remote server) gets
to your computer, regardless of the fact it was done in php(or any other
server side language for that matter) it will just be plain html. Once it
makes you computer the file/html will be the same as the same page written
in ASP or even written with just plain html.

Your focus needs to be on the HTML itself and any CSS(what the browser DOES
receive). Looking at the emails it seems both browsers are having issues. 

  -Original Message-
  From: Dustin Wish [mailto:[EMAIL PROTECTED]
  Sent: Friday, May 13, 2005 2:12 PM
  To: php-general@lists.php.net
  Subject: [PHP] php works in IE not Firefox?
 
 
  Anyone run across an issue where a php script works in IE and
  not Firefox?
  Christianboards.org is a PHP nuke site running on a Enism
  linux box that is
  having this issue.
 
 
  ---
  Outgoing mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.859 / Virus Database: 585 - Release Date: 2/14/2005
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Repeat Accross, then down

2005-04-22 Thread Simon Allison
Say for a photo album with photo paths taken from a database (or anything
from a database for that matter) how can you use PHP to repeat across for
three photos and then add a new row with the next 3 photos and so on and so
on?



[PHP] Seleting records

2005-03-16 Thread Simon Allison
Hello,

 

My news table has a year field as such

 

Year



2000

2000

2001

2001

2003

2005

2005

 

I was wondering if you could select from this table so you only get one of
each year, so the output would be

 

2000

2001

2003

2005

 

Is this possible, I was trying to think of an algorithm that would work, but
I have had no luck yet?

 

Thanks,

Simon



[PHP] Reading posted form variables

2005-03-15 Thread Simon Allison
Hey,

 

I have a form which allows users to enter a message and then submits to a
confirmation page which displays the submitted message, and it has a form
with a hidden field which uses php to retrieve the message posted from the
initial page and posts that message if the user clicks the submit button
which confirms that it is correct.

 

However included in the message is a link to a file, and while the message
is displayed correctly on the confirmation page, it has trouble putting the
message into the hidden field, (some goes in the field and some is printed
on the webpage. The code I have used to retrieved the message and store it
in the hidden field is:

 

input name=msg type=hidden id=msg value=?php echo $_POST['msg']
? 

 

However, when I ran the script all that as stored in the hidden field was:

 

Please use the link below to download my newsletterbr/a href=\ 

 

And on the confirm page where the hidden field is the page had written:

 

Click here to download and view newsletter  

 

Obviously this has something to do with the quotation marks in the a href
statement, however I am new to php and my attempts using addslashes and
stripslashes have failed. I would be most grateful if anyone could help me. 

 

Cheers,

Simon