vForums Support Banner



 

Welcome Guest! Please Login or Register
vForums Support :: Programming & Coding :: Code Requests & Support :: Code not working! - View Topic
Topic Rating: *****
Printable View
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Code not working! (16th Dec 09 at 10:20pm UTC)
Resolved
For some reason this will not work I made sure all fields were correct and such but it still does not work. {Unsure}
http://forsakendesire.vforums.co.uk/board/profile/action/post
Code:
 
  1. <script type="text/javascript">
  2. <!--
  3.  
  4. /* Predefined Posting Template/Form
  5.     Created by Ross of vForums
  6.     http://virtualforums.co.uk
  7.     Please do not repost outside of
  8.     vForums support without permission */
  9.  
  10. var _title = 'Profile Template';
  11.  
  12. var _description = '';
  13.  
  14. var _fields = new Array(); var _f = 0;
  15.  
  16.     _fields[_f++] = new Array('input', 'Name', ['size', 40, 'maxLength', 50], '', 'Name of your Character', false);
  17.     _fields[_f++] = new Array('input', 'Age', ['size', 40, 'maxLength', 50], '', 'Age of you Character', false);
  18.     _fields[_f++] = new Array('input', 'Gender', ['size', 40, 'maxLength', 50], '', 'What is the Gender of your Character?', false);
  19.     _fields[_f++] = new Array('input', 'Home Town', ['size', 40, 'maxLength', 250], '', 'What is your Characters Home Town?', false);
  20.     _fields[_f++] = new Array('textarea', 'Occupation', ['cols', 40, 'rows', 2], '', 'What Occupation does your character have?', false);
  21.     _fields[_f++] = new Array('input', 'Alliance', ['size', 40, 'maxLength', 350], '', 'Pro/Anti ShinRa/Avalanche/Other?', false);
  22.     _fields[_f++] = new Array('textarea', 'Appearance', ['cols', 40, 'rows', 4], '', 'Your Characters Appearance.(If you have pictures link them do NOT post them as [img][/img] Thanks))', false);
  23.     _fields[_f++] = new Array('textarea', 'Personality', ['cols', 40, 'rows', 4], '', 'What is your characters personality?', false);
  24.     _fields[_f++] = new Array('input', 'Strength', ['size', 40, 'maxLength', 100], '', 'Characters Strength', false);
  25.     _fields[_f++] = new Array('input', 'Weakness', ['size', 40, 'maxLength', 100], '', 'Characters Weakness', false);
  26.     _fields[_f++] = new Array('input', 'Weapon', ['size', 40, 'maxLength', 150], '', 'Characters Weapon (If you have pictures link them do NOT post them as [img][/img] Thanks)', false);
  27.     _fields[_f++] = new Array('input', 'Materia in weapon', ['size', 40, 'maxLength', 150], '', 'What Materia do you have in your weapon?', false);
  28.     _fields[_f++] = new Array('input', 'Armor', ['size', 40, 'maxLength', 150], '', 'Characters Armor.', false);
  29.     _fields[_f++] = new Array('input', 'Materia in Armor', ['size', 40, 'maxLength', 150], '', 'Materia in Characters Armor.', false);
  30.     _fields[_f++] = new Array('input', 'Accessory', ['size', 40, 'maxLength', 150], '', 'Does your character have any Accessories?', false);
  31.     _fields[_f++] = new Array('textarea', 'History', ['cols', 40, 'rows', 4], '', 'What is your characters History?', false);
  32.     _fields[_f++] = new Array('textarea', 'Anything you would like to add?', ['cols', 40, 'rows', 4], '', 'Post any useful information about you or your character. (If any.)', false);
  33.     _fields[_f++] = new Array('input', 'Is this your 1st, 2nd, or 3rd profile application?', ['size', 40, 'maxLength', 150], '', 'Don'\t lie. We will find out!', false);
  34.     _fields[_f++] = new Array('input', 'Time Zone', ['size', 40, 'maxLength', 150], '', 'Just a piece of helpful information', false);
  35.     _fields[_f++] = new Array('input', 'How often can you be online?', ['size', 40, 'maxLength', 150], '', '&;nsbp', false);
  36.  
  37. var _widths = ['100%', '20%', '40%', '40%'];
  38.  
  39. var _posting_form = {
  40.  
  41.     errors: new Array(),
  42.  
  43.     init: function() {
  44.         this.create_form();
  45.     },
  46.     
  47.     create_form: function() {
  48.         // Create new post layout
  49.         var _holder = document.createElement('table');
  50.         _holder.setAttribute('className', 'border');
  51.         _holder.setAttribute('class', 'border');
  52.         _holder.setAttribute('cellSpacing','1');
  53.         _holder.setAttribute('cellPadding', '4');
  54.         _holder.setAttribute('align', 'center');
  55.         _holder.setAttribute('width', _widths[0]);
  56.         _holder.setAttribute('id', 'post_form_holder');
  57.         _holder.appendChild(document.createElement('tbody'));
  58.         _holder.firstChild.appendChild( document.createElement('tr') ).appendChild( document.createElement('td') ).appendChild( document.createElement('font') );
  59.         _holder.firstChild.lastChild.lastChild.className = 'title1';
  60.         _holder.firstChild.lastChild.lastChild.colSpan = '3';
  61.         _holder.firstChild.lastChild.lastChild.lastChild.size = '2';
  62.         _holder.firstChild.lastChild.lastChild.lastChild.appendChild(document.createTextNode(_title));
  63.         if(_description) {
  64.             _holder.firstChild.appendChild( document.createElement('tr') ).appendChild( document.createElement('td') ).appendChild( document.createElement('font') );
  65.             _holder.firstChild.lastChild.lastChild.setAttribute('className', 'window1');
  66.             _holder.firstChild.lastChild.lastChild.setAttribute('class', 'window1');
  67.             _holder.firstChild.lastChild.lastChild.setAttribute('colSpan', '3');
  68.             _holder.firstChild.lastChild.lastChild.lastChild.setAttribute('size', '2');
  69.             _holder.firstChild.lastChild.lastChild.lastChild.innerHTML = _description;
  70.         }
  71.         
  72.         for(_f=0; _f<_fields.length; _f++) {
  73.             switch(_fields[_f][0]) {
  74.                 case 'textarea' :
  75.                     var _tmp = document.createElement('textarea');
  76.                 break;
  77.                 
  78.                 case 'select' :
  79.                     var _tmp = document.createElement('select');
  80.                     for(_o=0; _o<_fields[_f][3].length; _o++) {
  81.                         _tmp.options[_o] = new Option(_fields[_f][3][_o], _fields[_f][3][_o]);
  82.                     }
  83.                 break;
  84.                 
  85.                 default :
  86.                     var _tmp = document.createElement('input');
  87.                     _tmp.type = 'text';
  88.                     if("undefined" != typeof _fields[_f][3] && _fields[_f][3] != "")
  89.                         _tmp.setAttribute('value', _fields[_f][3]);
  90.                 break;
  91.             }
  92.             _tmp.setAttribute('id', _f);
  93.             if("undefined" != typeof _fields[_f][2] && _fields[_f][2].length > 0) {
  94.                 for(_a=0; _a<_fields[_f][2].length; _a++) {
  95.                     _tmp.setAttribute(_fields[_f][2][_a++], _fields[_f][2][_a]);
  96.                 }
  97.             }
  98.             var _class = 'window' + ((_f % 2 == 0)? '2' : '1');
  99.             var _row = document.createElement('tr');
  100.             _row.appendChild(document.createElement('td'));
  101.             _row.lastChild.setAttribute('class', _class);
  102.             _row.lastChild.setAttribute('className', _class);
  103.             _row.lastChild.setAttribute('vAlign', 'top');
  104.             _row.lastChild.setAttribute('width', _widths[1]);
  105.             _row.lastChild.appendChild(document.createElement('font'));
  106.             _row.lastChild.lastChild.setAttribute('size', '2');
  107.             _row.lastChild.lastChild.style.fontWeight = 'bold';
  108.             _row.lastChild.lastChild.appendChild(document.createTextNode(_fields[_f][1] + ':'));
  109.             _row.appendChild(document.createElement('td'));
  110.             _row.lastChild.setAttribute('class', _class);
  111.             _row.lastChild.setAttribute('className', _class);
  112.             _row.lastChild.setAttribute('width', _widths[2]);
  113.             _row.lastChild.appendChild(document.createElement('font'));
  114.             _row.lastChild.lastChild.setAttribute('size', '2');
  115.             _row.lastChild.lastChild.appendChild(_tmp);
  116.             _row.appendChild(document.createElement('td'));
  117.             _row.lastChild.setAttribute('class', _class);
  118.             _row.lastChild.setAttribute('className', _class);
  119.             _row.lastChild.setAttribute('vAlign', 'top');
  120.             _row.lastChild.setAttribute('width', _widths[3]);
  121.             _row.lastChild.appendChild(document.createElement('font'));
  122.             _row.lastChild.lastChild.size = '1';
  123.             _row.lastChild.lastChild.appendChild(document.createTextNode(_fields[_f][4]));
  124.             _holder.firstChild.appendChild(_row);
  125.         }
  126.         var _submit = document.createElement('tr');
  127.         _submit.appendChild(document.createElement('td'));
  128.         _submit.lastChild.setAttribute('class', 'window' + (((_f+1) % 2 == 0)? '1' : '2'));
  129.         _submit.lastChild.setAttribute('className', 'window' + (((_f+1) % 2 == 0)? '1' : '2'));
  130.         _submit.lastChild.setAttribute('align', 'center');
  131.         _submit.lastChild.setAttribute('colSpan', 3);
  132.         var _button = document.createElement('input');
  133.         _button.setAttribute('type', 'button');
  134.         _button.setAttribute('value', 'Post Message');
  135.         _button.onclick = function() { _posting_form.post_it(); };
  136.         _submit.lastChild.appendChild(_button);
  137.         _holder.firstChild.appendChild(_submit);
  138.         document.post_form.style.display = 'none';
  139.         document.post_form.parentNode.insertBefore(_holder,  document.post_form);
  140.     },
  141.     
  142.     post_it: function() {
  143.         // create message and attempt to post it
  144.         this.errors = new Array();
  145.         document.post_form.message.value = document.post_form.subject.value = '';
  146.         var _sub = document.getElementById('0').value;
  147.         _fields[0][5] = true;
  148.         document.post_form.subject.value    = _sub;
  149.         for(_f=0; _f<_fields.length; _f++) {
  150.             if(document.getElementById(_f)) {
  151.                 _value = document.getElementById(_f).value;
  152.                 if(!_value || _value.match(/^s*$/)) {
  153.                     if(_f > 0 && _fields[_f][5])
  154.                         this.show_error('You have left the ' + _fields[_f][1] + ' option empty. This is a required field and as such must contain a value.');
  155.                     else
  156.                         _value = '[i]None[/i]';
  157.                 }
  158.                 document.post_form.message.value += '[b]' + _fields[_f][1] + ':[/b] ' + _value + '\n\n';
  159.             }
  160.         }
  161.         if(this.errors.length == 0)
  162.             document.post_form.post.click();
  163.         else
  164.             this.show_error();
  165.     },
  166.     
  167.     show_error: function() {
  168.         if("undefined" != typeof arguments[0] && arguments[0]) {
  169.             this.errors.push(arguments[0]);
  170.         } else {
  171.             // Show Errors
  172.             if(document.getElementById('status_holder')) {
  173.                 document.getElementById('status_holder_title').innerHTML = "An Error Has Occured";
  174.                 document.getElementById('status_holder_message').innerHTML = this.errors.join("<br />");
  175.                 document.getElementById('status_holder').style.display = 'block';
  176.             }
  177.         }
  178.     }
  179. }
  180.  
  181.  
  182.  
  183. if(document.post_form && location.href.match(/action\/post\/?$/) && vf_username != 'Guest') {
  184.     _posting_form.init();
  185. }
  186. //-->
  187. </script>
 


but it works here: http://forsakendesire.vforums.co.uk/board/affiliate/action/post I don't see what I did wrong though. {Unsure}
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Code not working! (17th Dec 09 at 1:47am UTC)
_fields[_f++] = new Array('input', 'Is this your 1st, 2nd, or 3rd profile application?', ['size', 40, 'maxLength', 150], '', 'Don'\t lie. We will find out!', false);

You failed to escape the ' correctly. Should be:

_fields[_f++] = new Array('input', 'Is this your 1st, 2nd, or 3rd profile application?', ['size', 40, 'maxLength', 150], '', 'Don\'t lie. We will find out!', false);
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: Code not working! (17th Dec 09 at 2:44am UTC)
Yeah I knew about that, for some reason I forgot to edit the OP, Here is the code that I have fixed but still does not work:

Code:
 
  1. <script type="text/javascript">
  2. <!--
  3.  
  4. /* Predefined Posting Template/Form
  5.     Created by Ross of vForums
  6.     http://virtualforums.co.uk
  7.     Please do not repost outside of
  8.     vForums support without permission */
  9.  
  10. var _title = 'Profile Template';
  11.  
  12. var _description = '';
  13.  
  14. var _fields = new Array(); var _f = 0;
  15.  
  16.     _fields[_f++] = new Array('input', 'Name', ['size', 40, 'maxLength', 50], '', 'Name of your Character', false);
  17.     _fields[_f++] = new Array('input', 'Age', ['size', 40, 'maxLength', 50], '', 'Age of you Character', false);
  18.     _fields[_f++] = new Array('input', 'Gender', ['size', 40, 'maxLength', 50], '', 'What is the Gender of your Character?', false);
  19.     _fields[_f++] = new Array('input', 'Home Town', ['size', 40, 'maxLength', 250], '', 'What is your Characters Home Town?', false);
  20.     _fields[_f++] = new Array('textarea', 'Occupation', ['cols', 40, 'rows', 2], '', 'What Occupation does your character have?', false);
  21.     _fields[_f++] = new Array('input', 'Alliance', ['size', 40, 'maxLength', 350], '', 'Pro/Anti ShinRa/Avalanche/Other?', false);
  22.     _fields[_f++] = new Array('textarea', 'Appearance', ['cols', 40, 'rows', 4], '', 'Your Characters Appearance. If you have pictures link them do NOT post them as img links Thanks.', false);
  23.     _fields[_f++] = new Array('textarea', 'Personality', ['cols', 40, 'rows', 4], '', 'What is your characters personality?', false);
  24.     _fields[_f++] = new Array('input', 'Strength', ['size', 40, 'maxLength', 100], '', 'Characters Strength', false);
  25.     _fields[_f++] = new Array('input', 'Weakness', ['size', 40, 'maxLength', 100], '', 'Characters Weakness', false);
  26.     _fields[_f++] = new Array('input', 'Weapon', ['size', 40, 'maxLength', 150], '', 'Characters Weapon If you have pictures link them do NOT post them as img links Thanks', false);
  27.     _fields[_f++] = new Array('input', 'Materia in weapon', ['size', 40, 'maxLength', 150], '', 'What Materia do you have in your weapon?', false);
  28.     _fields[_f++] = new Array('input', 'Armor', ['size', 40, 'maxLength', 150], '', 'Characters Armor.', false);
  29.     _fields[_f++] = new Array('input', 'Materia in Armor', ['size', 40, 'maxLength', 150], '', 'Materia in Characters Armor.', false);
  30.     _fields[_f++] = new Array('input', 'Accessory', ['size', 40, 'maxLength', 150], '', 'Does your character have any Accessories?', false);
  31.     _fields[_f++] = new Array('textarea', 'History', ['cols', 40, 'rows', 4], '', 'What is your characters History?', false);
  32.     _fields[_f++] = new Array('textarea', 'Anything you would like to add?', ['cols', 40, 'rows', 4], '', 'Post any useful information about you or your character. (If any.)', false);
  33.     _fields[_f++] = new Array('input', 'Is this your 1st, 2nd, or 3rd profile application?', ['size', 40, 'maxLength', 150], '', 'Don'\t lie. We will find out!', false);
  34.     _fields[_f++] = new Array('input', 'Time Zone', ['size', 40, 'maxLength', 150], '', 'Just a piece of helpful information', false);
  35.     _fields[_f++] = new Array('input', 'How often can you be online?', ['size', 40, 'maxLength', 150], '', '..', false);
  36.  
  37. var _widths = ['100%', '20%', '40%', '40%'];
  38.  
  39. var _posting_form = {
  40.  
  41.     errors: new Array(),
  42.  
  43.     init: function() {
  44.         this.create_form();
  45.     },
  46.     
  47.     create_form: function() {
  48.         // Create new post layout
  49.         var _holder = document.createElement('table');
  50.         _holder.setAttribute('className', 'border');
  51.         _holder.setAttribute('class', 'border');
  52.         _holder.setAttribute('cellSpacing','1');
  53.         _holder.setAttribute('cellPadding', '4');
  54.         _holder.setAttribute('align', 'center');
  55.         _holder.setAttribute('width', _widths[0]);
  56.         _holder.setAttribute('id', 'post_form_holder');
  57.         _holder.appendChild(document.createElement('tbody'));
  58.         _holder.firstChild.appendChild( document.createElement('tr') ).appendChild( document.createElement('td') ).appendChild( document.createElement('font') );
  59.         _holder.firstChild.lastChild.lastChild.className = 'title1';
  60.         _holder.firstChild.lastChild.lastChild.colSpan = '3';
  61.         _holder.firstChild.lastChild.lastChild.lastChild.size = '2';
  62.         _holder.firstChild.lastChild.lastChild.lastChild.appendChild(document.createTextNode(_title));
  63.         if(_description) {
  64.             _holder.firstChild.appendChild( document.createElement('tr') ).appendChild( document.createElement('td') ).appendChild( document.createElement('font') );
  65.             _holder.firstChild.lastChild.lastChild.setAttribute('className', 'window1');
  66.             _holder.firstChild.lastChild.lastChild.setAttribute('class', 'window1');
  67.             _holder.firstChild.lastChild.lastChild.setAttribute('colSpan', '3');
  68.             _holder.firstChild.lastChild.lastChild.lastChild.setAttribute('size', '2');
  69.             _holder.firstChild.lastChild.lastChild.lastChild.innerHTML = _description;
  70.         }
  71.         
  72.         for(_f=0; _f<_fields.length; _f++) {
  73.             switch(_fields[_f][0]) {
  74.                 case 'textarea' :
  75.                     var _tmp = document.createElement('textarea');
  76.                 break;
  77.                 
  78.                 case 'select' :
  79.                     var _tmp = document.createElement('select');
  80.                     for(_o=0; _o<_fields[_f][3].length; _o++) {
  81.                         _tmp.options[_o] = new Option(_fields[_f][3][_o], _fields[_f][3][_o]);
  82.                     }
  83.                 break;
  84.                 
  85.                 default :
  86.                     var _tmp = document.createElement('input');
  87.                     _tmp.type = 'text';
  88.                     if("undefined" != typeof _fields[_f][3] && _fields[_f][3] != "")
  89.                         _tmp.setAttribute('value', _fields[_f][3]);
  90.                 break;
  91.             }
  92.             _tmp.setAttribute('id', _f);
  93.             if("undefined" != typeof _fields[_f][2] && _fields[_f][2].length > 0) {
  94.                 for(_a=0; _a<_fields[_f][2].length; _a++) {
  95.                     _tmp.setAttribute(_fields[_f][2][_a++], _fields[_f][2][_a]);
  96.                 }
  97.             }
  98.             var _class = 'window' + ((_f % 2 == 0)? '2' : '1');
  99.             var _row = document.createElement('tr');
  100.             _row.appendChild(document.createElement('td'));
  101.             _row.lastChild.setAttribute('class', _class);
  102.             _row.lastChild.setAttribute('className', _class);
  103.             _row.lastChild.setAttribute('vAlign', 'top');
  104.             _row.lastChild.setAttribute('width', _widths[1]);
  105.             _row.lastChild.appendChild(document.createElement('font'));
  106.             _row.lastChild.lastChild.setAttribute('size', '2');
  107.             _row.lastChild.lastChild.style.fontWeight = 'bold';
  108.             _row.lastChild.lastChild.appendChild(document.createTextNode(_fields[_f][1] + ':'));
  109.             _row.appendChild(document.createElement('td'));
  110.             _row.lastChild.setAttribute('class', _class);
  111.             _row.lastChild.setAttribute('className', _class);
  112.             _row.lastChild.setAttribute('width', _widths[2]);
  113.             _row.lastChild.appendChild(document.createElement('font'));
  114.             _row.lastChild.lastChild.setAttribute('size', '2');
  115.             _row.lastChild.lastChild.appendChild(_tmp);
  116.             _row.appendChild(document.createElement('td'));
  117.             _row.lastChild.setAttribute('class', _class);
  118.             _row.lastChild.setAttribute('className', _class);
  119.             _row.lastChild.setAttribute('vAlign', 'top');
  120.             _row.lastChild.setAttribute('width', _widths[3]);
  121.             _row.lastChild.appendChild(document.createElement('font'));
  122.             _row.lastChild.lastChild.size = '1';
  123.             _row.lastChild.lastChild.appendChild(document.createTextNode(_fields[_f][4]));
  124.             _holder.firstChild.appendChild(_row);
  125.         }
  126.         var _submit = document.createElement('tr');
  127.         _submit.appendChild(document.createElement('td'));
  128.         _submit.lastChild.setAttribute('class', 'window' + (((_f+1) % 2 == 0)? '1' : '2'));
  129.         _submit.lastChild.setAttribute('className', 'window' + (((_f+1) % 2 == 0)? '1' : '2'));
  130.         _submit.lastChild.setAttribute('align', 'center');
  131.         _submit.lastChild.setAttribute('colSpan', 3);
  132.         var _button = document.createElement('input');
  133.         _button.setAttribute('type', 'button');
  134.         _button.setAttribute('value', 'Post Message');
  135.         _button.onclick = function() { _posting_form.post_it(); };
  136.         _submit.lastChild.appendChild(_button);
  137.         _holder.firstChild.appendChild(_submit);
  138.         document.post_form.style.display = 'none';
  139.         document.post_form.parentNode.insertBefore(_holder,  document.post_form);
  140.     },
  141.     
  142.     post_it: function() {
  143.         // create message and attempt to post it
  144.         this.errors = new Array();
  145.         document.post_form.message.value = document.post_form.subject.value = '';
  146.         var _sub = document.getElementById('0').value;
  147.         _fields[0][5] = true;
  148.         document.post_form.subject.value    = _sub;
  149.         for(_f=0; _f<_fields.length; _f++) {
  150.             if(document.getElementById(_f)) {
  151.                 _value = document.getElementById(_f).value;
  152.                 if(!_value || _value.match(/^s*$/)) {
  153.                     if(_f > 0 && _fields[_f][5])
  154.                         this.show_error('You have left the ' + _fields[_f][1] + ' option empty. This is a required field and as such must contain a value.');
  155.                     else
  156.                         _value = '[i]None[/i]';
  157.                 }
  158.                 document.post_form.message.value += '[b]' + _fields[_f][1] + ':[/b] ' + _value + '\n\n';
  159.             }
  160.         }
  161.         if(this.errors.length == 0)
  162.             document.post_form.post.click();
  163.         else
  164.             this.show_error();
  165.     },
  166.     
  167.     show_error: function() {
  168.         if("undefined" != typeof arguments[0] && arguments[0]) {
  169.             this.errors.push(arguments[0]);
  170.         } else {
  171.             // Show Errors
  172.             if(document.getElementById('status_holder')) {
  173.                 document.getElementById('status_holder_title').innerHTML = "An Error Has Occured";
  174.                 document.getElementById('status_holder_message').innerHTML = this.errors.join("<br />");
  175.                 document.getElementById('status_holder').style.display = 'block';
  176.             }
  177.         }
  178.     }
  179. }
  180.  
  181.  
  182.  
  183. if(document.post_form && location.href.match(/action\/post\/?$/) && vf_username != 'Guest') {
  184.     _posting_form.init();
  185. }
  186. //-->
  187. </script>
 
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Code not working! (17th Dec 09 at 3:09am UTC)
Again, you have the same error! {Tongue Out}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: Code not working! (17th Dec 09 at 3:27am UTC)
I see how it is now. {Cheesy} I have it behind the apostrophe instead of behind. {Cheesy} like '\ instead of \' {Tongue Out}

It's working now! ^_^;
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Code not working! (17th Dec 09 at 3:29am UTC)
{Tongue Out}
Yea.
Glad it's working! {Smile}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: Code not working! (17th Dec 09 at 3:35am UTC)
Thanks for your help! {Grin} now we can get our RP forum up and running now!
 Printable View

All times are GMT+0 :: The current time is 3:45am
Page generated in 2.0427 seconds
This Forum is Powered By vForums (v2.4)
Create a Forum for Free | Find Forums