FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » can one make a php function or macro with arguments to generate HTML code?
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: can one make a php function or macro with arguments to generate HTML code? [message #181774 is a reply to message #181773] Sat, 01 June 2013 10:57 Go to previous messageGo to previous message
Luuk is currently offline  Luuk
Messages: 329
Registered: September 2010
Karma:
Senior Member
On 01-06-2013 12:42, Luuk wrote:
> On 01-06-2013 12:21, steve nospam wrote:
>> I am newbie. I am writing HTML and find myself duplicating lots of
>> code, which is the same except for 1 or 2 names/items in it.
>>
>> I do not know how to make a function or macro that takes arguments in
>> HTML or CSS. Then I read that php is much more powerful and one should
>> code HTML pages in php.
>>
>> Here is an example of what I have, I am just asking for a hint or a
>> link on how to code this in php.
>>
>> <div class="blabla">
>> <video poster="folder_name/image.png" controls>
>> <source src="folder_name/movie.ogv" type="video/ogg">
>> <source src="folder_name/movie.mp4" type="video/mp4">
>> opps, browser does not support the video tag.
>> </video>
>> </div>
>>
>> The above block of HTML close is repeated many time. Each time, a
>> different "folder_name" is used.
>> So I end up copy/paste and edit this code many many times.
>>
>> It would be nice if I can define a function, and just pass it the
>> folder_name and it returns back this whole code. So the above becomes
>>
>> <div class="name">
>> make_video_code("ABC")
>> </div>
>>
>> <div class="name">
>> make_video_code("ADR")
>> </div>
>>
>> <div class="name">
>> make_video_code("ACB")
>> </div>
>>
>> etc.... you get the idea.
>>
>> Is something like this possible? Does any one have a templates or
>> example of how to do this in php? where to put the function
>> make_video_code()?
>>
>> thanks
>> Steve
>>
>
> I would also include the 'div' inside the function, like this (untested):
>
> function make_video_code($class, $video) {
> echo "<div class=${class}>";
> echo "<video poster="folder_name/image.png" controls>";
> echo "<source src="folder_name/${video}.ogv" type="video/ogg">"
> echo "</video>";
> echo "</div>";
> }
>
> makevideo("name", "ABC");
> makevideo("name", "ADR");
> makevideo("different_class", "ACB");
>
>

hmm, luckily i wrote '*untested*'

there's a ';' missing, and the function-name on the last 3 lines is
wrong.........
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: UML
Next Topic: Best Online Shop
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Nov 22 18:21:33 GMT 2024

Total time taken to generate the page: 0.04013 seconds