answersLogoWhite

0

PHP is not designed to do this sort of decoration alone -- you will need another language that adds styles. However, PHP can output a portion of these styling languages, like CSS, that add decoration to links.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What are PHP packages?

PHP packages are like modules you can add to PHP to add functionability. Adding new packages will allow you do do new things in your PHP scripts.


How do you add a comment in PHP?

< ?php // This is an example of comment in PHP /* This is another example of comment in PHP and we can write comments in multiple lines using this method */ ? >


How do you install PHP as a CGI?

The PHP website has a comprehensive online manual that can explain most aspects of PHP, including its installation. See the related links for a constantly-updated PHP installation guide.


PHP content management refers to what type of system?

PHP content management refers to the management of the content of websites. There are various styles of coding that can be used but PHP is one of the most common.


What is syntax in php?

We can use php tags in different ways. <?php //php code to be written here ?> OR <? //php code ?> This tag will not work when we using editors such as macromedia dreamweaver. OR < script language="php"> //php code </script>


How run php?

I have provided you with a two links that will take you through how to install PHP on your computer and how to setup a server so you can run your PHP code. See the relevant link below


Is there any open source php dating software?

For open source php dating software, try one of the links below.


Are there any sites to learn PHP?

Please see related links.


How do you leave comment on php code?

There are 3 styles of PHP comments // comment a single line # comment a single line (perl-style /* comment block */


I am using the php peg match all function to find out the links from the other site. but in rare cases the some links of the site are uncorrect. how i ignore the uncorrect links using php. Example?

There is an inbuilt php function to check the validity of links: <br/> <?php $link = $_POST['link']; // This should be the link sent to be validated // The below if statment checks if the path provided is correct if(!filter_var($link, FILTER_VALIDATE_URL, FILTER_FLAG_PATH_REQUIRED)) { echo "Invalid Link!!"; } else { // your code here // It will only execute if the link path is valid } ?> Try and make modifications based on related links provided


How do you add bookmark button in php website?

You could use the AddThis.com service.In fact, I just wrote an article about it a few days ago, with the instructions.The link is below, under Sources and related links.


How can you put PHP into your product details pages?

<?php // your php code goes here ?> If your product pages are created in PHP (have the .php extension) then you can simply add the php start/end tag. There is a way to have the server recognize PHP inside of HTML files but that would require some work on the server, better left to the server manager.