我使用html / css和php为我的社交媒体wesbiste做了一个关注取消关注按钮。如果我没有按下按钮应该打印跟随,我需要能够跟随他。如果我关注用户,按钮应该打印取消关注,我应该取消关注他。
HTML
library(dplyr)
library(tidyr)
dt2 <- dt %>%
gather(Column, Number, -A) %>%
extract(Column, into = c("Column", "ID"), regex = "([A-Z]+)([0-9]+)") %>%
spread(Column, Number) %>%
select(A, R, O = ID, Value = O)
dt2
# A R O Value
# 1 1 3 1 3
# 2 1 5 2 3
# 3 1 6 3 4
# 4 2 3 1 3
# 5 2 5 2 4
# 6 2 7 3 4
# 7 3 4 1 4
# 8 3 5 2 5
# 9 3 6 3 5
PHP
dt <- read.table(text = "A R1 O1 R2 O2 R3 O3
1 3 3 5 3 6 4
2 3 3 5 4 7 4
3 4 4 5 5 6 5",
header = TRUE)
当我按下按钮时,它会给我一个错误,并且用户发布的所有帖子都消失了,并且网址更改为: http://localhost/profile.php?unfollow=unfollow&postbody=&postimg=
答案 0 :(得分:1)
可能是你的问题在这里:
<form>
将其更改为
<form action="somewhere.php" method="post">
添加方法=&#34;发布&#34;