Sponsored Content
Top Forums Shell Programming and Scripting how to use html tag in shell scripting Post 302259309 by carlos25 on Monday 17th of November 2008 08:13:57 PM
Old 11-17-2008
A basic example can be found here PHP in HTML - HTML inside PHP - PHP embed HTML

Code:
<html>
<title>HTML with PHP</title>
<body>
<h1>My Example</h1>

<?php
//your php code here
?>

<b>Here is some more HTML</b>

<?php
//more php code
?>


</body>
</html>

You can remove the php script and generate a html page by using echo or print on each line with a bash or ksh script and then open the doc with a web browser to view the document.
FYI - The php script won't work unless it's on a webserver.

Last edited by carlos25; 11-17-2008 at 09:21 PM..
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How do I extract text only from html file without HTML tag

I have a html file called myfile. If I simply put "cat myfile.html" in UNIX, it shows all the html tags like <a href=r/26><img src="http://www>. But I want to extract only text part. Same problem happens in "type" command in MS-DOS. I know you can do it by opening it in Internet Explorer,... (4 Replies)
Discussion started by: los111
4 Replies

2. Shell Programming and Scripting

How can i delete html attributes from tag ?

Input: <table class="pixelBorderTable faqTable" width="100%" border="1" cellpadding="3" cellspacing="0"> <tbody><tr> <td class="pixelBorderTableHeaderTd" valign="top" width="20%" bgcolor="#666666"><p>&nbsp;</p></td> <td class="pixelBorderTableHeaderTd" valign="top"... (1 Reply)
Discussion started by: cola
1 Replies

3. Shell Programming and Scripting

Script to delete HTML tag

Guys, I have a little script that I got of the internet and that I use in Squid to block ads. I used that script with linux but now i have moved my servers to freebsd. I have a step learning curve there but it is fun: Back to the script issue. The script used to work i with linux but... (15 Replies)
Discussion started by: zongo
15 Replies

4. Shell Programming and Scripting

Having problem with how to use HTML in Unix shell scripting

Hi All, I'm new to this forum. This is my first question. I'm trying to automate the status related information in our environment. So this is how the output would be. SEGMENT SERVER PORT1 PORT2 PORT3 PORT4 PORT5 ACS acscsa01 up up up up up All... (2 Replies)
Discussion started by: anand.aswini
2 Replies

5. Shell Programming and Scripting

Extracting a string from html tag

Hi I am new to string extractions in shell script... I am trying to extract a string such as #1753 from html tag looks like below. <a class="model-link tl-tr" href="lastSuccessfulBuild/">Last successful build (#1753), 40 min ago</a> and want the value as 1753 Could someone help me to... (3 Replies)
Discussion started by: hicharbo
3 Replies

6. Shell Programming and Scripting

Search for a html tag and print the entire tag

I want to print from <fruits> to </fruits> tag which have <fruit> as mango. Also i want both <fruits> and </fruits> in output. Please help eg. <fruits> <fruit id="111">mango<fruit> . another 20 lines . </fruits> (3 Replies)
Discussion started by: Ashik409
3 Replies

7. Shell Programming and Scripting

Print Value between desired html tag

Hi, I have a html line as below :-... (6 Replies)
Discussion started by: satishmallidi
6 Replies

8. Shell Programming and Scripting

How to remove html tag which has multiple lines in SHELL?

I want to clean a html file. I try to remove the script part in the html and remove the rest of tags and empty lines. The code I try to use is the following: sed '/<script/,/<\/script>/d' webpage.html | sed -e 's/<*>//g' | sed '/^\s*$/d' > output.txt However, in this method, I can not... (10 Replies)
Discussion started by: YuhuiFeng
10 Replies

9. UNIX for Beginners Questions & Answers

Multiline html tag parse shell script

Hello, I want to parse the contents of a multiline html tag ex: <html> <body> <p>some other text</p> <div> <p class="margin-bottom-0"> text1 <br> text2 <br> <br> text3 </p> </div> </body> (15 Replies)
Discussion started by: SorcRR
15 Replies
PHPCREDITS(3)								 1							     PHPCREDITS(3)

phpcredits - Prints out the credits for PHP

SYNOPSIS
bool phpcredits ([int $flag = CREDITS_ALL]) DESCRIPTION
This function prints out the credits listing the PHP developers, modules, etc. It generates the appropriate HTML codes to insert the information in a page. PARAMETERS
o $flag - To generate a custom credits page, you may want to use the $flag parameter. Pre-defined phpcredits(3) flags +-----------------+---------------------------------------------------+ | name | | | | | | | description | | | | +-----------------+---------------------------------------------------+ | CREDITS_ALL | | | | | | | All the credits, equivalent to using: CRED- | | | ITS_DOCS + CREDITS_GENERAL + CREDITS_GROUP + | | | CREDITS_MODULES + CREDITS_FULLPAGE. It generates | | | a complete stand-alone HTML page with the appro- | | | priate tags. | | | | | CREDITS_DOCS | | | | | | | The credits for the documentation team | | | | |CREDITS_FULLPAGE | | | | | | | Usually used in combination with the other | | | flags. Indicates that a complete stand-alone HTML | | | page needs to be printed including the informa- | | | tion indicated by the other flags. | | | | |CREDITS_GENERAL | | | | | | | General credits: Language design and concept, | | | PHP authors and SAPI module. | | | | | CREDITS_GROUP | | | | | | | A list of the core developers | | | | |CREDITS_MODULES | | | | | | | A list of the extension modules for PHP, and | | | their authors | | | | | CREDITS_SAPI | | | | | | | A list of the server API modules for PHP, and | | | their authors | | | | +-----------------+---------------------------------------------------+ RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Prints the general credits <?php phpcredits(CREDITS_GENERAL); ?> Example #2 Prints the core developers and the documentation group <?php phpcredits(CREDITS_GROUP | CREDITS_DOCS | CREDITS_FULLPAGE); ?> Example #3 Printing all the credits <html> <head> <title>My credits page</title> </head> <body> <?php // some code of your own phpcredits(CREDITS_ALL - CREDITS_FULLPAGE); // some more code ?> </body> </html> NOTES
Note phpcredits(3) outputs plain text instead of HTML when using the CLI mode. SEE ALSO
phpversion(3), php_logo_guid(3), phpinfo(3). PHP Documentation Group PHPCREDITS(3)
All times are GMT -4. The time now is 03:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy