Jump to content

hirephpexpert

Member
  • Posts

    3
  • Joined

  • Last visited

About hirephpexpert

hirephpexpert's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. I want to develop internet IP address tracking software what is the best software platform to develop my IP address project
  2. Thanks Gitex for the advise but its tried it but couldn't get proper result any other suggestion plz...
  3. Hi, I need some help in selecting only a part of a string. Below is the string: $str = "state_West_Bracknell_4057"; I would like to meet only West Bracknell from the above. $state1 = explode("_", $str); echo $state1[1]; But this will only return West. I know I can concat and get both BUT sometimes the state's name is only: $str = "state_Bracknell_4057"; So if I concat it will give Bracknell_4057 So, is there a way to remove everything before the first "_" and the last "_"? Thanks
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated