Jump to content

[SOLVED] Selecting only first couple of words from a field


ljaii

Recommended Posts

Just a quick query...

 

How do I retrieve only the first couple of words from a field?

 

I have made a news script but don't want to display the entire content of the news article just the first 10 words or so as a brief intro.

 

Many Thanks,

lj

Link to comment
Share on other sites

It works for one query but not for my search query.

 

I currently have this code:

$query = "SELECT (LEFT(content,100)), title, date, id FROM news WHERE content LIKE \"%$variable%\" or title LIKE \"%$variable%\" ORDER BY title";

 

which throws up the error: "Notice: Undefined index: content in..."

 

Help!

 

Thanks,

lj

Link to comment
Share on other sites

It seems there is nothing wrong with your query, try this

$query = "SELECT LEFT(content,100), title, date, id FROM news WHERE content LIKE '%".$variable."%' or title LIKE '%".$variable."%' ORDER BY title";

check ur php code first.

 

Link to comment
Share on other sites

Thanks, but didnt resolve it.

 

It seems it doesnt take the content variable when I add the (LEFT(content,100)) part. Don't know why it doesnt take this when it takes it without the added bit.

 

Confusion.

 

/quit ;p

Link to comment
Share on other sites

Notice: Undefined index, this notice appears when you are trying to access an index in an array that does not exists

Use this:

$query = "SELECT LEFT(content,100) as content, title, date, id FROM news WHERE content LIKE '%".$variable."%' or title LIKE '%".$variable."%' ORDER BY title";

Link to comment
Share on other sites

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.