Jump to content

Greatone

New Members
  • Posts

    3
  • Joined

  • Last visited

Greatone's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. thanks so from what you said i think i got to study more , no other way... collages sucks , i'm going to collage now majored in networking and internet , they kinda teach everything ! from networking to c++ and html and.... they never focus on one particular thing , they teach basics of everything to you , becoming a pro is student's job . and who's gonna pay me to do their basic css html jobs? (no one ) , form what i know people use the words like : Mastered PHP ....Mastered Bootstrap....Complete knowledge of Java script ...
  2. Hi so i've been learning php for 3 mouth now by reading php 6 Bible and watching lynda and so on... i was looking for a job in few past weeks and i found out i don't have that kind of self confidence to go for it ! you know when they say : PHP Project Manager , it scar's me... the thing is , i know all about basic to medium php , array...MySQL....all those essentials but i don't know what do they want from a php web developer . so i began to search for intern job somewhere and i told myself i should bust my ass 24/7 for few mouth and after that i ll be real php guy and it seems like there is no place to reach not php but almost all programming languages a year ago i was searching for the same thing but in networking section and there was 100's of intern ship jobs but in programming there is none ! so i want some one to give me (us) simple to pro real life projects . what do they want php junior or senior developer's for ? what do they do? what is the most common needs ? what is the most essential things to know? what is a hired php developer should do in the office? some people doesn't need you in the office and want you to work from home , they give you project's , what's that? is there any source in the web to offer what is need ? i know its too much , but this was my last option , so if anyone can help i would practically owe him/her my whole future salaries...
  3. i want to make a simple forced lower case form but i got stuck on it to begin with i want to everything user's write and submit convert to lowercase am i using the right code? i'm not sure about using preg_match in this situation but i dont know what else to do don't be harsh with me i'm noob <?php if(isset($_GET['user'])&&!empty($_GET['user'])) { $user = $_GET['user']; if (preg_match('$englishUpperAlphabet'//English alphabet Upper case array//',$user)){ $user = mb_strtolower($user); echo $user; } else{ echo 'none'; }} ?> <form action="t.php" action="GET"> name: <input type="text" name="user" > <br> <input type="submit" value="submit" > </form>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.