Hello guys,
I greet you all! I'm just new to drupal. I have attempted to configure it but I cannot get the work done. Look, I want to hack it to resemble my current project WAMP. I failed to hack the theme to match what I want to do. Help where shall I start! I want to use Jazz Lite
I am having issues converting a count down timer from my old site to Drupal 6. Here is my code. The non-javascript portions work fine but I can't get the text box to populate and count down.
<?PHP
drupal_add_js('
var up,down;
var min1,sec1;
var cmin1,csec1,cmin2,csec2;
function Minutes(data) {
for(var i=0;i
return(data.substring(0,i)); }
function Seconds(data) {
for(var i=0;i
return(data.substring(i+1,data.length)); }
function Display(min,sec) {
var disp;
if(min<=9) disp=" 0";
else disp=" ";
disp+=min+":";
if(sec<=9) disp+="0"+sec;
else disp+=sec;
return(disp); }
function Down() {
cmin2=1*Minutes(document.sw.beg2.value);
csec2=0+Seconds(document.sw.beg2.value);
DownRepeat(); }
function DownRepeat() {
csec2--;
if(csec2==-1) { csec2=59; cmin2--; }
document.sw.disp2.value=Display(cmin2,csec2);
if((cmin2==0)&&(csec2==0)) document.sw.disp2.value="- - : - -";
else down=setTimeout("DownRepeat()",1000); }
I have created a special content type and managed to create a view that displays a list of the available articles of this type. What I would like to do is create a form where users (maybe only authenticated users) can enter information following some setup (template?). The result is an article of this specific content type, that I'd like to review/moderate before the article is published.
Do I need to use CCK or Webform or a custom-built module? And how should I do that?
I have created a special content type and managed to create a view that displays a list of the available articles of this type. What I would like to do is create a form where users (maybe only authenticated users) can enter information following some setup (template?). The result is an article of this specific content type, that I'd like to review/moderate before the article is published.
Do I need to use CCK or Webform or a custom-built module? And how should I do that?
hi , i was using vbulletin and wordpress from past 2 years and working lot with both both of them and last days i started a site related to education and used both of above scripts but after that i saw few sites made in drupal cms and now i want to make my site like that sites . can u plz tell me which modules they are using so i can make a free education site for students to get better education online at no cost
sites exapmle www.gimme20.com
I have a mysql database whose contents I want to put in a Drupal website. So far I have been able to import quite a few of these mysql databases by simply converting them to csv files then using the Node Import module, which worked fabulously.