w3resource

PHP Exercises : Print out all the credits for PHP

PHP : Exercise-27 with Solution

Write a PHP script to print out all the credits for PHP.

Sample Solution:

Code:

<!DOCTYPE html>
<html>
<head>
<title>My credits page</title>
</head>
<body>
<?php
// Call the phpcredits function with the specified credits constant
phpcredits(CREDITS_ALL - CREDITS_FULLPAGE);
// This part may contain some additional PHP code specific to your needs
// For example, you can include more PHP code or HTML content here
?>
</body>
</html>

Sample Output:

View the output in the browser

Flowchart:

Flowchart: Print out all the credits for PHP

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a PHP script to get the information about the operating system PHP is running on.
Next: Write a PHP script to get the directory path used for temporary files.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.