-1

Hello I am having a problem with my joomla code

when I try xxxxxxxxxindex.php?option=com_blast&task=ccis this is going to the controller function ccis and when I tr xxxxxxxxxxxxxxindex.php?option=com_blast&task=ccim?data=123 this is going to the function display, I want this to come to the function ccis, how can I do this ??

whats wrong in my joomla

Thanks

Thomas John
  • 1,903
  • 4
  • 24
  • 29
  • Maybe this is decipherable for a Joomla expert, but it isn't for me. – Pekka Nov 09 '10 at 13:11
  • Not really a joomla issue if he actually used ?data instead of &data (see my answer). But I agree that the question is not written very well. – ThiefMaster Nov 09 '10 at 13:13

1 Answers1

0

Use &data=123 instead of ?data=123. In your URL you get the following arguments:

  • option=com_blast
  • task=ccim?data=123

As you see, data is not a separate argument since you are not using & to separate it from the previous argument.

ThiefMaster
  • 310,957
  • 84
  • 592
  • 636