• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] How to Convert Title as Tags?

Started by megaman79,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

megaman79Topic starter

Hello PHPVibe,

How to make the Video Title as Tags for the Videos?

For example: John Michael New Song = Tags: John, Michael, New, Song

Hope this is possible.
"Very Happy with PHPVibe"
  •  

PHPVibe A.

Depends where you want to make the change?
In video page or in submit?

If in video page:

$tag = explode(' ', $video->title);
$tags = implode( ',', $tag);
echo $tags; //lists them

megaman79Topic starter

Quote from: Alexander on
Depends where you want to make the change?
In video page or in submit?

If in video page:

$tag = explode(' ', $video->title);
$tags = implode( ',', $tag);
echo $tags; //lists them


In the video page. I just have to paste this code inside video.php any where?
Give me the correct location where I need put it.
"Very Happy with PHPVibe"
  •  

megaman79Topic starter

Quote from: megaman79 on
In the video page. I just have to paste this code inside video.php any where?
Give me the correct location where I need put it.

I think I'm wrong. I want the Title of the Video to be imported as Tags for the Video when I upload video at Front end of Site, also when I use the Cron Job. I want the Title to import as Tags for the video also.

Thanks for the help Alexander.
"Very Happy with PHPVibe"
  •  

PHPVibe A.

Why fill the database for nothing? Tags are only used on the video page, you can just output them there.

megaman79Topic starter

Quote from: Alexander on
Why fill the database for nothing? Tags are only used on the video page, you can just output them there.

I think this will help me for SEO (search).
"Very Happy with PHPVibe"
  •  

PHPVibe A.

I don't see in any way how...they will help you the same if you build them on the fly and not add them to the database.

Similar topics (7)