Recent content by Madkat

  1. M

    html in php else if statement?

    yes. <?php if (condition) {?> put html code here or whatever you like <?php } elseif(condition) {?> put other code here as well <?php } else {?> put even more code <?php } ?> you can jump in and out of php at any time you like OR you can use one echo per if: <?php if(condition) { echo...
  2. M

    HTML problem, probably easy. Help me please.?

    without knowing exactly what you mean, i can only assume you're talking about the border that is automatically placed around the image to define it as a link. if that's what you're referring towards place this in your header to remove the border from all the images. <style type="text/css"> a...
Back
Top