Hi,
I am creating one website in that website i used one string.
for example
Webdeveloper
in that example i want to display only developer in my webpage using string conceps how to do this .Please give some suggestions or example code for this.
Thanks
Punithapary

See this:

<?php
echo substr("Hello world!",6);
?>

The output of the code above will be:

world!

and

<?php
echo substr("Hello world!",6,5);
?>

The output of the code above will be:

world

------------------------
You can see more string functions by googling...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.