Re: Create nofollow text link?

2010-01-17 Thread Cariolano
Hi, Try something as $html->link('yourlink', 'www.yourlink.com', array ('rel' => 'nofollow')); Good luck! On 17 jan, 00:13, thankyou wrote: > Hello, > Having problems creating a nofollow link. > > I currently have the code below: > > link('mylink', 'http://www.mylink.com'); ?> > > What can I do

Re: Create nofollow text link?

2010-01-17 Thread thankyou
So is this correct implementation of making a link nofollow? link('mylink', 'http://www.mylink.com', array ('rel'=>'nofollow') ); ?> On Jan 17, 7:02 am, euromark wrote: > add in the third parameter as options array: > array('rel'=>'nofollow') > > On 17 Jan., 09:11, John Andersen wrote: > > >

Re: Create nofollow text link?

2010-01-17 Thread euromark
add in the third parameter as options array: array('rel'=>'nofollow') On 17 Jan., 09:11, John Andersen wrote: > The nofollow is an additional attribute to the link. > See:http://en.wikipedia.org/wiki/Nofollow > for an explanation and how to implement. > Enjoy, >    John > > On Jan 17, 4:13 am,

Re: Create nofollow text link?

2010-01-17 Thread John Andersen
The nofollow is an additional attribute to the link. See: http://en.wikipedia.org/wiki/Nofollow for an explanation and how to implement. Enjoy, John On Jan 17, 4:13 am, thankyou wrote: > Hello, > Having problems creating a nofollow link. > > I currently have the code below: > > link('mylink',

Create nofollow text link?

2010-01-16 Thread thankyou
Hello, Having problems creating a nofollow link. I currently have the code below: link('mylink', 'http://www.mylink.com'); ?> What can I do to this to make it nofollow? Thank you :) Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions