By nathanmcginty on
Hey guys,
Probably a simple question, but i'm not much of an SQL/PHP programmer.
Basically what I want to do is to setup a webform where one of my site editors can type in a link for a website.
The webform would then send this information to a block to be displayed. I'm trying to have a block of "cool sites" that my editor can update without having to muck about with the admin stuff in drupal.
The webform part I can do. And I guess what needs to happen is for the block to go and read the webform table from the database.
I'm not not sure where to start.
Comments
Use CCK to make a simple
Use CCK to make a simple content type, Cool Site, with a title field (which you can hide on display) and a link (enable the Link module w/in CCK) field. Then your web form will be already built by CCK, and you will then use Views to create a block view that displays your Cool Sites. No programming required :-)