I am new with PHP and I have couple of problems which are listed below.
If I have a meta tag like this: <meta name="description" content="some text"> How can read only the content (some text) into variable?
When I read content of some directory by using for example dir() I get list of files which are stored there, but I also get current directory (".") and parent directory (".."). How can I get list of files and directories in some directory, without current (".") and parent ("..") in that list?
If I have text field named "real name". When the form has been sended the name appears "real_name" in email. How can I get it appear like "real name" in email. I know I can use ereg_replace() to remove "" but if I do that all ""s would be removed.
Thanks a lot to all!