Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6369909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:51:51+00:00 2026-05-25T00:51:51+00:00

I have some HTML that I need to sometimes wrap in an anchor tag

  • 0

I have some HTML that I need to sometimes wrap in an anchor tag when a condition is met. I could do something like this:

<?php
    $html = '<div>my html</div>';
    if ($condition):
?>
    <a href="http://google.com"><?php echo $html ?></a>
<?php else: ?>
    <?php echo $html ?>
<?php endif; ?>

…but I don’t want to have to wrap my html in quotes to turn it into a string. This is for two reasons: syntax highlighting goes away, and its harder to maintain.

How can I do something like the following?

<!-- pseudo code -->
<?php if ($condition): echo $this->wrapWithLinkTo('http://google.com', ?>
    <div>my html</div>
<?php ); endif; ?>

…so that the end result would be:

<!-- when $condition is true -->
<a href="http://google.com"><div>my html</div></a>

<!-- when $condition is false -->
<div>my html</div>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:51:51+00:00Added an answer on May 25, 2026 at 12:51 am

    Use Output buffering!

    <?php ob_start(); ?>
    <div>my html</div>
    <?php
    
    $html = ob_get_clean();
    
    if ($condition):
    ?>
        <a href="http://google.com"><?php echo $html ?></a>
    <?php else: ?>
        <?php echo $html ?>
    <?php endif; ?>
    

    PHP’s output buffering is used to capture output from PHP code, HTML mode, or anything, and then either store it to a variable and not output it to the client (ob_get_clean()), store it into a variable and also send it to the client(ob_get_flush()), or do a whole bunch of other things with it! (ob_* functions)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some HTML that looks like this: <ul class=faq> <li class=open> <a class=question
I have some HTML that looks like this: <div> <div class=value> <a href=# class=clicker>Some
I have some HTML that looks like this: <div class=product> Content In Here <div
If I have some HTML that looks like this: <div id=text> This is some
So I have some html that looks like the following: <div class='something unknown' id='something_unknown_1'>
I have some HTML that looks like this: $(document).ready(function(){ $('#cumulative-returns').graph({ width: 400, height: 180,
$country.parent().parent().next().children('td').children('.province-select') Basically I have some HTML that looks like this: <table> <tr> <th>country</th> <td><select
I have some html that looks like this: <dl> <dt>Label 1</dt> <dd> Yadda yadda
I have some HTML/CSS in this jsfiddle that I need to modify. Originally the
I have some HTML that I need to toggle between two structures - one

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.