Jump to content

Recommended Posts

Hi,

I would like to print the text add the kind of heading, but I don't know how can I print.

 

I would like something like :

1 Hello

2 Some title

3 World

1 Heading 1

 

My code is :

$text = "<H1>Hello</H1><H2><a href='go'>some title</a></H2><H3 class='pro'>World</H3><H1>Heading 1</H1>";
$matches = array();
$numMatches = preg_match_all( '/<H(?P<level>[1-6])(?P<attrib>.*?'.'>)(?P<header>.*?)<\/H[1-6] *>/i', $text, $matches );

foreach( $matches[3] as $headline )
{
print $headline."<br>";
}

 

Thanks a lot

 

 

Link to comment
https://forums.phpfreaks.com/topic/126305-how-can-i-print-headings/
Share on other sites

<pre><?php

 

$text = "<H1>Hello</H1><H2><a href='go'>some title</a></H2><H3 class='pro'>World</H3><H1>Heading 1</H1>";

$regex = '%<h([\d])>(.+?)</h\1>%si';

$numMatches = preg_match_all( $regex, $text, $matches, PREG_SET_ORDER );

 

foreach( $matches as $headline )

echo "$headline[1] $headline[2]\n";

 

?></pre>

Thanks a lot!!

 

I would like to ask and something else,

I am trying to insert into database these headings.

 

MySQL Code is

 

CREATE DATABASE `project` DEFAULT CHARACTER SET greek COLLATE greek_general_ci;

USE project;

 

CREATE TABLE headings(

id_heading smallint(5) NOT NULL auto_increment,

type varchar(5) NOT NULL,

text TEXT DEFAULT NULL,

PRIMARY KEY (id_heading)

)ENGINE = innodb CHARACTER SET greek COLLATE greek_general_ci COMMENT = '';

 

 

But I have a problem in mysql with my language.

I take as results '????????????????'.

I use WAMPSERVER 2.0

 

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.