The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
I want to learn vb coding
...
|
#2
|
|||
|
|||
In order to register variables to the vBulletin GPC array, you use:
PHP Code:
You can retrieve the variable in your PHP script using $vbulletin->GPC['variable1']; The variable1 and number1 come from the name attributes you give your input elements in the template. They should match or else it will be empty. -- $db is just short for $vbulletin->db. However, if you're hooking into a class of vBulletin you might have to use $this->registry->db in order to interact with the database. query_write should be used for queries that may affect something in the table, such as UPDATE or DELETE queries. query_first can be used to directly return an array of the first result. This is useful if you want to write less code. query_read can be used to read from table. -- Here's a link to the API which might be useful: https://members.vbulletin.com/api/ |
Благодарность от: | ||
X-or |
#3
|
||||
|
||||
Quote:
query will be directed to the slave if you have one, which is bad for writes. |
#4
|
|||
|
|||
They'd probably care more if your conditions weren't so harsh. At the very least, you should be responsible for setting up the test environment rather than expecting someone to faithfully replicate your production environment on spec.
That said? Go for it. I was in the same boat and slowly have been getting the hang of things. My 'pie in the sky' project was adding a character database to my RPG forum and something I once thought would be impossible to do myself. Now, it's done. Better than I originally envisioned and opening up new possibilities. Read, read, read. Even discussions that have nothing to do with you. Bookmark this. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|