Article Rewriting PHP script

ntrailz

Newbie
Joined
Mar 29, 2011
Messages
9
Reaction score
0
Hey guys

I am looking for some php code that I can put on my own site. It's not article spinning code its just one of those scripts that breaks down an article into paragraphs and then I would rewrite the whole thing.

I can give examples if you would like to see one but I keep getting stopped by the forum rules just now
 
Code:
<?php

$article = "<p>para 1</p>
<p>para 2</p>
<p>para 3</p>
";

preg_match_all("/<p>.*<\/p>/imsU", $article, $regs);
$paras = $regs[0];
print_r($paras);

?>
 
Back
Top